From 264a1598c543f52d63489ee663d91d161d44a7d3 Mon Sep 17 00:00:00 2001 From: David Marchand Date: Tue, 12 Nov 2019 13:37:33 +0100 Subject: [PATCH] examples/l2fwd: fix build warning with system wide install MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Caught when compiling this example with pkg-config: ## Building l2fwd ... main.c: In function ‘main’: main.c:716:3: warning: ‘rte_eth_dev_set_ptypes’ is deprecated: Symbol is not yet part of stable ABI [-Wdeprecated-declarations] 716 | ret = rte_eth_dev_set_ptypes(portid, RTE_PTYPE_UNKNOWN, NULL, | ^~~ In file included from main.c:38: ...build-x86-default/install-root/usr/local/include/rte_ethdev.h:2661:5: note: declared here 2661 | int rte_eth_dev_set_ptypes(uint16_t port_id, uint32_t ptype_mask, | ^~~~~~~~~~~~~~~~~~~~~~ ln -sf l2fwd-shared build/l2fwd Fixes: 9731df2e7554 ("examples/l2fwd: disable packet type parsing") Signed-off-by: David Marchand Acked-by: Ferruh Yigit --- examples/l2fwd/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/l2fwd/Makefile b/examples/l2fwd/Makefile index 59b2b4ab4a..9c506844ea 100644 --- a/examples/l2fwd/Makefile +++ b/examples/l2fwd/Makefile @@ -21,6 +21,8 @@ PKGCONF=pkg-config --define-prefix PC_FILE := $(shell $(PKGCONF) --path libdpdk) CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk) +# Add flag to allow experimental API as l2fwd uses rte_ethdev_set_ptype API +CFLAGS += -DALLOW_EXPERIMENTAL_API LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk) LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --static --libs libdpdk) -- 2.20.1