The filenames of the linker map files for DPDK libraries, all follow a
standard format: rte_<libname>_version.map. The ip_frag version, however,
was missing an underscore in the name, so was non-standard. By changing
this, we no longer need the build system to explicitly be given the name of
the mapfile, as it can determine it from the directory/library name.
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
CFLAGS += -O3
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)
-EXPORT_MAP := rte_ipfrag_version.map
+EXPORT_MAP := rte_ip_frag_version.map
LIBABIVER := 1
--- /dev/null
+DPDK_2.0 {
+ global:
+
+ rte_ip_frag_free_death_row;
+ rte_ip_frag_table_create;
+ rte_ip_frag_table_statistics_dump;
+ rte_ipv4_frag_reassemble_packet;
+ rte_ipv4_fragment_packet;
+ rte_ipv6_frag_reassemble_packet;
+ rte_ipv6_fragment_packet;
+
+ local: *;
+};
+
+DPDK_17.08 {
+ global:
+
+ rte_ip_frag_table_destroy;
+
+} DPDK_2.0;
+++ /dev/null
-DPDK_2.0 {
- global:
-
- rte_ip_frag_free_death_row;
- rte_ip_frag_table_create;
- rte_ip_frag_table_statistics_dump;
- rte_ipv4_frag_reassemble_packet;
- rte_ipv4_fragment_packet;
- rte_ipv6_frag_reassemble_packet;
- rte_ipv6_fragment_packet;
-
- local: *;
-};
-
-DPDK_17.08 {
- global:
-
- rte_ip_frag_table_destroy;
-
-} DPDK_2.0;