diff options
Diffstat (limited to 'examples/skeleton')
-rw-r--r-- | examples/skeleton/Makefile | 3 | ||||
-rw-r--r-- | examples/skeleton/meson.build | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/examples/skeleton/Makefile b/examples/skeleton/Makefile index a4a1860..bd980ec 100644 --- a/examples/skeleton/Makefile +++ b/examples/skeleton/Makefile @@ -23,8 +23,6 @@ CFLAGS += -O3 $(shell pkg-config --cflags libdpdk) LDFLAGS_SHARED = $(shell pkg-config --libs libdpdk) LDFLAGS_STATIC = -Wl,-Bstatic $(shell pkg-config --static --libs libdpdk) -CFLAGS += -DALLOW_EXPERIMENTAL_API - build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build $(CC) $(CFLAGS) $(SRCS-y) -o $@ $(LDFLAGS) $(LDFLAGS_SHARED) @@ -50,7 +48,6 @@ RTE_TARGET ?= x86_64-native-linuxapp-gcc include $(RTE_SDK)/mk/rte.vars.mk -CFLAGS += -DALLOW_EXPERIMENTAL_API CFLAGS += $(WERROR_FLAGS) # workaround for a gcc bug with noreturn attribute diff --git a/examples/skeleton/meson.build b/examples/skeleton/meson.build index 89ddba2..9bb9ec3 100644 --- a/examples/skeleton/meson.build +++ b/examples/skeleton/meson.build @@ -6,9 +6,6 @@ # To build this example as a standalone application with an already-installed # DPDK instance, use 'make' -allow_experimental_apis = true sources = files( 'basicfwd.c' ) - -allow_experimental_apis = true |