diff options
Diffstat (limited to 'lib/librte_table/Makefile')
-rw-r--r-- | lib/librte_table/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/librte_table/Makefile b/lib/librte_table/Makefile index 8ddc8804..2e32fbf1 100644 --- a/lib/librte_table/Makefile +++ b/lib/librte_table/Makefile @@ -38,10 +38,15 @@ LIB = librte_table.a CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) +LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_port +LDLIBS += -lrte_lpm -lrte_hash +ifeq ($(CONFIG_RTE_LIBRTE_ACL),y) +LDLIBS += -lrte_acl +endif EXPORT_MAP := rte_table_version.map -LIBABIVER := 2 +LIBABIVER := 3 # # all source are stored in SRCS-y |