]> git.droids-corp.org - dpdk.git/commitdiff
mk: build with _GNU_SOURCE defined by default
authorAnatoly Burakov <anatoly.burakov@intel.com>
Thu, 4 Oct 2018 10:20:33 +0000 (11:20 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 22 Oct 2018 09:28:27 +0000 (11:28 +0200)
We use _GNU_SOURCE all over the place, but often times we miss
defining it, resulting in broken builds on musl. Rather than
fixing every library's and driver's and application's makefile,
fix it by simply defining _GNU_SOURCE by default for all
builds.

Remove all usages of _GNU_SOURCE in source files and makefiles,
and also fixup a couple of instances of using __USE_GNU instead
of _GNU_SOURCE.

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
43 files changed:
app/meson.build
app/test-pmd/Makefile
buildtools/pmdinfogen/pmdinfogen.c
drivers/bus/dpaa/Makefile
drivers/bus/dpaa/meson.build
drivers/bus/fslmc/meson.build
drivers/bus/pci/linux/Makefile
drivers/bus/pci/meson.build
drivers/crypto/dpaa2_sec/Makefile
drivers/crypto/dpaa_sec/Makefile
drivers/mempool/dpaa/Makefile
drivers/meson.build
drivers/net/mlx5/mlx5_ethdev.c
drivers/net/mlx5/mlx5_socket.c
drivers/net/softnic/conn.c
examples/cmdline/Makefile
examples/ethtool/ethtool-app/Makefile
examples/ip_pipeline/conn.c
examples/l2fwd-cat/Makefile
examples/l2fwd-cat/meson.build
examples/load_balancer/Makefile
examples/meson.build
examples/performance-thread/l3fwd-thread/main.c
examples/performance-thread/pthread_shim/main.c
examples/performance-thread/pthread_shim/pthread_shim.c
examples/qos_sched/Makefile
examples/tep_termination/Makefile
examples/vhost/Makefile
examples/vhost_crypto/Makefile
examples/vhost_crypto/meson.build
examples/vhost_scsi/Makefile
examples/vhost_scsi/meson.build
lib/librte_cmdline/Makefile
lib/librte_cmdline/cmdline.c
lib/librte_eal/bsdapp/eal/Makefile
lib/librte_eal/linuxapp/eal/Makefile
lib/librte_eal/meson.build
lib/librte_pdump/Makefile
lib/librte_sched/Makefile
lib/meson.build
mk/target/generic/rte.vars.mk
test/test/Makefile
test/test/meson.build

index 99e0b93ec3fe3206a94f63cb2ed30626ad5a972f..e68d949e9a775fb2d293855f3180d16831402163 100644 (file)
@@ -11,13 +11,18 @@ apps = ['pdump',
 # for BSD only
 lib_execinfo = cc.find_library('execinfo', required: false)
 
+default_cflags = machine_args
+
+# specify -D_GNU_SOURCE unconditionally
+default_cflags += '-D_GNU_SOURCE'
+
 foreach app:apps
        build = true
        name = app
        allow_experimental_apis = false
        sources = []
        includes = []
-       cflags = machine_args
+       cflags = default_cflags
        objs = [] # other object files to link against, used e.g. for
                  # instruction-set optimized versions of code
 
index 8e4ff5b0ec02415b46de4b5eac7b42082e74ec45..d5258eae4a8931f949ba331e9934d77e9b3f0676 100644 (file)
@@ -72,8 +72,6 @@ endif
 
 endif
 
-CFLAGS_cmdline.o := -D_GNU_SOURCE
-
 include $(RTE_SDK)/mk/rte.app.mk
 
 endif
index 0f35ca46bb0bc4ef75d34fcdd2e9a26d3026adea..dc0b6d5ff41e908f6f218c2f3454e0405d5383c1 100644 (file)
@@ -8,7 +8,6 @@
  *
  */
 
-#define _GNU_SOURCE
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
index 381a5c6595da44c88e0e22c2902e38c5b3e0e225..800e5cd20d6ebaf74570a97d89eb0ac63be62c0e 100644 (file)
@@ -14,7 +14,6 @@ CFLAGS := -I$(SRCDIR) $(CFLAGS)
 CFLAGS += -O3 $(WERROR_FLAGS)
 CFLAGS += -Wno-pointer-arith
 CFLAGS += -Wno-cast-qual
-CFLAGS += -D _GNU_SOURCE
 CFLAGS += -I$(RTE_BUS_DPAA)/
 CFLAGS += -I$(RTE_BUS_DPAA)/include
 CFLAGS += -I$(RTE_BUS_DPAA)/base/qbman
index 11a3c949904445684f63cbde2d2588f169b422a0..1fcb4e91378d66beff7663501cd9b93cc8faa1e2 100644 (file)
@@ -28,4 +28,3 @@ if cc.has_argument('-Wno-cast-qual')
 endif
 
 includes += include_directories('include', 'base/qbman')
-cflags += ['-D_GNU_SOURCE']
index 18c45495b15777acddf84003234680fafab44d7d..4b0521577d60322e6ef3c84352a17415d28a8edc 100644 (file)
@@ -26,4 +26,3 @@ sources = files('fslmc_bus.c',
 allow_experimental_apis = true
 
 includes += include_directories('mc', 'qbman/include', 'portal')
-cflags += ['-D_GNU_SOURCE']
index 96ea1d540b79aab5ce7de18836c8fa21b96dd04e..90404468b0f290b6294a8a34d159988c79941f3e 100644 (file)
@@ -4,5 +4,3 @@
 SRCS += pci.c
 SRCS += pci_uio.c
 SRCS += pci_vfio.c
-
-CFLAGS += -D_GNU_SOURCE
index ef9492bb87156303b68f297f827efc5fdc0baaf4..a3140ff9773b14ed6032c432a7ff9238569bbe94 100644 (file)
@@ -13,7 +13,6 @@ if host_machine.system() == 'linux'
                        'linux/pci_uio.c',
                        'linux/pci_vfio.c')
        includes += include_directories('linux')
-       cflags += ['-D_GNU_SOURCE']
 else
        sources += files('bsd/pci.c')
        includes += include_directories('bsd')
index 8ab83c00b20c448217c496d8681cf0f59c991497..8b8dfd2abba09c6a35cc46991c58a1572da076e0 100644 (file)
@@ -20,7 +20,6 @@ LIB = librte_pmd_dpaa2_sec.a
 CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS += -D _GNU_SOURCE
 
 ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
 ifeq ($(shell test $(GCC_VERSION) -gt 70 && echo 1), 1)
index 674a7a3988d196440a3fa42b6714e8cbaa743a64..5ce95c23fd6ac1f7f994776772d5e7f7c2acc6e0 100644 (file)
@@ -11,7 +11,6 @@ LIB = librte_pmd_dpaa_sec.a
 
 # build flags
 CFLAGS += -DALLOW_EXPERIMENTAL_API
-CFLAGS += -D _GNU_SOURCE
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
index 9cf36856caccddba6329a8cb7d1c32ad7ef1d7f5..ead5029fd804696a4b13f96db6ef229c40d8ae20 100644 (file)
@@ -10,7 +10,6 @@ LIB = librte_mempool_dpaa.a
 
 CFLAGS := -I$(SRCDIR) $(CFLAGS)
 CFLAGS += -O3 $(WERROR_FLAGS)
-CFLAGS += -D _GNU_SOURCE
 CFLAGS += -I$(RTE_SDK)/drivers/bus/dpaa
 CFLAGS += -I$(RTE_SDK)/drivers/bus/dpaa/include/
 CFLAGS += -I$(RTE_SDK)/drivers/mempool/dpaa
index 47b4215a3064fbf68f47c3fba169910b24e37284..567f4a19c2630ce965b21ef8d4e4245613fe110b 100644 (file)
@@ -16,6 +16,10 @@ default_cflags = machine_args
 if cc.has_argument('-Wno-format-truncation')
        default_cflags += '-Wno-format-truncation'
 endif
+
+# specify -D_GNU_SOURCE unconditionally
+default_cflags += '-D_GNU_SOURCE'
+
 foreach class:driver_classes
        drivers = []
        std_deps = []
index cacdf8e189a1b36177c73b56322c475a2e5caa35..d178ed6a18323cd4a7a90d2c6dbd93375fdd5964 100644 (file)
@@ -3,8 +3,6 @@
  * Copyright 2015 Mellanox Technologies, Ltd
  */
 
-#define _GNU_SOURCE
-
 #include <stddef.h>
 #include <assert.h>
 #include <inttypes.h>
index a3a5229112ff644ce6da078972c6a74acc2a83c5..00106171d3cbe3bf15be3108b4a413e1f5205707 100644 (file)
@@ -3,8 +3,6 @@
  * Copyright 2016 Mellanox Technologies, Ltd
  */
 
-#define _GNU_SOURCE
-
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>
index 990cf40fce2f8fcedd05108ae334064e0acca6bc..8b66580887268050f7ce321448c3e6b9b8d4caf4 100644 (file)
@@ -8,7 +8,6 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#define __USE_GNU
 #include <sys/socket.h>
 
 #include <sys/epoll.h>
index 7893c85b3ec29721cf37c737ca61a01b95e11083..a617cce115132ee1f1d23954a7059d9de0c4f80d 100644 (file)
@@ -56,7 +56,6 @@ SRCS-y := main.c commands.c parse_obj_list.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS_parse_obj_list.o := -D_GNU_SOURCE
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index 4cd9efdd574b3c909abd44b7f40f6502703c36e0..9ecfc0b893671048e76d405c17852e38271acd46 100644 (file)
@@ -16,7 +16,7 @@ APP = ethtool
 # all source are stored in SRCS-y
 SRCS-y := main.c ethapp.c
 
-CFLAGS += -O3 -D_GNU_SOURCE -pthread -I$(SRCDIR)/../lib
+CFLAGS += -O3 -pthread -I$(SRCDIR)/../lib
 CFLAGS += $(WERROR_FLAGS)
 
 LDLIBS += -L$(subst ethtool-app,lib,$(RTE_OUTPUT))/lib
index 6b08e9e8e88c83d661f3915951c1d0c4951f00d9..30fca80c1447cec677773fb82e4210ef06d5b096 100644 (file)
@@ -8,7 +8,6 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#define __USE_GNU
 #include <sys/socket.h>
 
 #include <sys/epoll.h>
index aec770c28b785e2ce732ae1339af6fe87913fb49..b6eeabde1a22dee91e2ea99949bf62163a33bcd7 100644 (file)
@@ -23,7 +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 += -D_GNU_SOURCE
 LDFLAGS += -lpqos
 
 build/$(APP)-shared: $(SRCS-y) Makefile $(PC_FILE) | build
@@ -66,7 +65,6 @@ endif
 EXTRA_CFLAGS += -O3 -g -Wfatal-errors
 
 CFLAGS += -I$(PQOS_INSTALL_PATH)/../include
-CFLAGS_cat.o := -D_GNU_SOURCE
 
 LDLIBS += -L$(PQOS_INSTALL_PATH)
 LDLIBS += -lpqos
index 1234e7b556ae3dea784ef99b8c791b2062a456ec..4e2777a03358d979eb733645d7a4f57e6556b943 100644 (file)
@@ -9,7 +9,6 @@
 pqos = cc.find_library('pqos', required: false)
 build = pqos.found()
 ext_deps += pqos
-cflags += '-D_GNU_SOURCE'
 cflags += '-I/usr/local/include' # assume pqos lib installed in /usr/local
 sources = files(
        'cat.c', 'l2fwd-cat.c'
index fc8df71e8eb5d6f7f9be335faa8fd23100673ec4..197b019d5847fed0670d220e7e0f36b06084ea8d 100644 (file)
@@ -50,7 +50,6 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3 -g
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS_config.o := -D_GNU_SOURCE
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 4ee7a111412bdefb2bd27fdf4a35e34cd2e7cea8..af81c762e8532d0383958d3dce020bd3ad07bfb9 100644 (file)
@@ -22,6 +22,10 @@ default_cflags = machine_args
 if cc.has_argument('-Wno-format-truncation')
        default_cflags += '-Wno-format-truncation'
 endif
+
+# specify -D_GNU_SOURCE unconditionally
+default_cflags += '-D_GNU_SOURCE'
+
 foreach example: examples
        name = example
        build = true
index 50fd1b00ac2ee7c3707f0aa00a29b3ca2cf4be34..4f8747bc3ec0dbe132256d2f8b0a6c7752ad98f5 100644 (file)
@@ -2,8 +2,6 @@
  * Copyright(c) 2010-2016 Intel Corporation
  */
 
-#define _GNU_SOURCE
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdint.h>
index 7d0d581169537d0658954cd3686751010a554237..03ff394369cd967b3b8004fd176be4972f157fb0 100644 (file)
@@ -2,7 +2,6 @@
  * Copyright(c) 2015 Intel Corporation
  */
 
-#define _GNU_SOURCE
 #include <stdio.h>
 #include <stdlib.h>
 #include <stdint.h>
index 53f12437f0a27acb4f978c95b42485fa48177a70..a02de067771ec317c5d833a248e007628d684bdc 100644 (file)
@@ -6,7 +6,6 @@
 #include <stdlib.h>
 #include <sys/types.h>
 #include <errno.h>
-#define __USE_GNU
 #include <sched.h>
 #include <dlfcn.h>
 
index a7ecf978812576ba77269d22aab96905d14058f1..45b0a9eb6b7901f9bfc5d1db03c8870e10db5340 100644 (file)
@@ -57,8 +57,6 @@ else
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS_args.o := -D_GNU_SOURCE
-CFLAGS_cfg_file.o := -D_GNU_SOURCE
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index 8ec1a38ef9fa9bf407414d46e88fcf2e93616dfa..4c15643259e0467dc09b86e9dca64fc2d44b3982 100644 (file)
@@ -60,7 +60,6 @@ endif
 CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS += -D_GNU_SOURCE
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index a2ea97a0c6cffd8bd1c0a339db007ec5cddec355..c6964381bd914affa69b94af0fcd5101c5319786 100644 (file)
@@ -61,7 +61,6 @@ else
 CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += -O2 -D_FILE_OFFSET_BITS=64
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS += -D_GNU_SOURCE
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index 83d331012273ef85804dfddd049060236557c679..a620abf49e629269220b3a18d75a4eb4c0b5605e 100644 (file)
@@ -25,7 +25,6 @@ SRCS-y := main.c
 CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += -O2 -D_FILE_OFFSET_BITS=64
 CFLAGS += $(WERROR_FLAGS)
-CFLAGS += -D_GNU_SOURCE
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index 0f4876f06bb140dd94034c776d3c0418fb582d20..daf19fb87017296748bd73c9991e80a4b57f11db 100644 (file)
@@ -8,7 +8,7 @@
 
 allow_experimental_apis = true
 deps += ['vhost', 'cryptodev']
-cflags += ['-D_GNU_SOURCE','-D_FILE_OFFSET_BITS=64']
+cflags += ['-D_FILE_OFFSET_BITS=64']
 sources = files(
        'main.c'
 )
index fa0cf727ed9c5f87f9569a64d039ea6391e9eebe..523aee0bf24986e61186962247aa859085125fc7 100644 (file)
@@ -18,7 +18,7 @@ shared: build/$(APP)-shared
 static: build/$(APP)-static
        ln -sf $(APP)-static build/$(APP)
 
-CFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
+CFLAGS += -D_FILE_OFFSET_BITS=64
 LDFLAGS += -pthread
 
 PC_FILE := $(shell pkg-config --path libdpdk)
@@ -57,7 +57,7 @@ please change the definition of the RTE_TARGET environment variable)
 all:
 else
 
-CFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
+CFLAGS += -D_FILE_OFFSET_BITS=64
 CFLAGS += -O2
 CFLAGS += $(WERROR_FLAGS)
 
index 5f92370f54daa2f37efe0664afc18dc65d9852f8..2303bcaed7cc52f7c4da4d72fe97948aed41c71e 100644 (file)
@@ -10,7 +10,7 @@ if host_machine.system() != 'linux'
        build = false
 endif
 deps += 'vhost'
-cflags += ['-D_GNU_SOURCE','-D_FILE_OFFSET_BITS=64']
+cflags += ['-D_FILE_OFFSET_BITS=64']
 sources = files(
        'scsi.c', 'vhost_scsi.c'
 )
index ddae1cfde0405a6eb1d6147bea24691ae36107be..c64142b8d5a00d08504cba2a011ad2272ccd5ce6 100644 (file)
@@ -25,7 +25,6 @@ SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += cmdline_vt100.c
 SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += cmdline_socket.c
 SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += cmdline_parse_portlist.c
 
-CFLAGS += -D_GNU_SOURCE
 LDLIBS += -lrte_eal
 
 # install includes
index 591b78b0f7403ee2c1d9c22e16aded766ba07d42..d9042f0489e3f94a78ae9f47ff7f37e2cbc73c08 100644 (file)
@@ -126,35 +126,11 @@ cmdline_printf(const struct cmdline *cl, const char *fmt, ...)
        if (!cl || !fmt)
                return;
 
-#ifdef _GNU_SOURCE
        if (cl->s_out < 0)
                return;
        va_start(ap, fmt);
        vdprintf(cl->s_out, fmt, ap);
        va_end(ap);
-#else
-       int ret;
-       char *buf;
-
-       if (cl->s_out < 0)
-               return;
-
-       buf = malloc(BUFSIZ);
-       if (buf == NULL)
-               return;
-       va_start(ap, fmt);
-       ret = vsnprintf(buf, BUFSIZ, fmt, ap);
-       va_end(ap);
-       if (ret < 0) {
-               free(buf);
-               return;
-       }
-       if (ret >= BUFSIZ)
-               ret = BUFSIZ - 1;
-       ret = write(cl->s_out, buf, ret);
-       (void)ret;
-       free(buf);
-#endif
 }
 
 int
index 6e9bc02c5342b9ae7cf859c1f65ed5b5b660b3ff..d19f53c1e3aa6601077c8c08a37e33cbf4221d6b 100644 (file)
@@ -78,11 +78,6 @@ SRCS-y += rte_cycles.c
 
 CFLAGS_eal_common_cpuflags.o := $(CPUFLAGS_LIST)
 
-CFLAGS_eal.o := -D_GNU_SOURCE
-#CFLAGS_eal_thread.o := -D_GNU_SOURCE
-CFLAGS_eal_log.o := -D_GNU_SOURCE
-CFLAGS_eal_common_log.o := -D_GNU_SOURCE
-
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
 ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
index 736bc6569a6f8b9a1f7c8e821a35e82218d4fe72..72808859469858e1fc31ad2cd63f24dd99ce7307 100644 (file)
@@ -86,22 +86,6 @@ SRCS-y += rte_cycles.c
 
 CFLAGS_eal_common_cpuflags.o := $(CPUFLAGS_LIST)
 
-CFLAGS_eal.o := -D_GNU_SOURCE
-CFLAGS_eal_interrupts.o := -D_GNU_SOURCE
-CFLAGS_eal_vfio_mp_sync.o := -D_GNU_SOURCE
-CFLAGS_eal_timer.o := -D_GNU_SOURCE
-CFLAGS_eal_lcore.o := -D_GNU_SOURCE
-CFLAGS_eal_memalloc.o := -D_GNU_SOURCE
-CFLAGS_eal_thread.o := -D_GNU_SOURCE
-CFLAGS_eal_log.o := -D_GNU_SOURCE
-CFLAGS_eal_common_log.o := -D_GNU_SOURCE
-CFLAGS_eal_hugepage_info.o := -D_GNU_SOURCE
-CFLAGS_eal_common_whitelist.o := -D_GNU_SOURCE
-CFLAGS_eal_common_options.o := -D_GNU_SOURCE
-CFLAGS_eal_common_thread.o := -D_GNU_SOURCE
-CFLAGS_eal_common_lcore.o := -D_GNU_SOURCE
-CFLAGS_rte_cycles.o := -D_GNU_SOURCE
-
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
 ifeq ($(CONFIG_RTE_TOOLCHAIN_GCC),y)
index 62ef985b990d9f304db55d1764f596785515b786..a18f3a826d89d9c2d2411b0cae7ea150204e6121 100644 (file)
@@ -25,7 +25,6 @@ version = 9  # the version of the EAL API
 allow_experimental_apis = true
 deps += 'compat'
 deps += 'kvargs'
-cflags += '-D_GNU_SOURCE'
 sources = common_sources + env_sources
 objs = common_objs + env_objs
 headers = common_headers + env_headers
index ee14dba7af4a8555893532625f120dfb0b6ef8db..b241151dcaf4759b02aebf7c7a329e454f5b4e1f 100644 (file)
@@ -8,7 +8,6 @@ LIB = librte_pdump.a
 
 CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
-CFLAGS += -D_GNU_SOURCE
 LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_ethdev
 
 EXPORT_MAP := rte_pdump_version.map
index 55d9c698994bb51dac639330a6598b6b67350f08..46c53ed717910db7311019df9495304e18fccdf6 100644 (file)
@@ -11,8 +11,6 @@ LIB = librte_sched.a
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
-CFLAGS_rte_red.o := -D_GNU_SOURCE
-
 LDLIBS += -lm
 LDLIBS += -lrt
 LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_net
index 3acc67e6ed434836650c2871e7c22fa5cd8087bd..24351cc40a13695374d3f0cea28853f1cd59a39b 100644 (file)
@@ -32,6 +32,10 @@ if cc.has_argument('-Wno-format-truncation')
 endif
 
 enabled_libs = [] # used to print summary at the end
+
+# -D_GNU_SOURCE unconditionally
+default_cflags += '-D_GNU_SOURCE'
+
 foreach l:libraries
        build = true
        name = l
index 98085cd310640e68722ba54aeb6c4f523c1d3e57..dd149acc9cee67fb75e649a059d914496a84018d 100644 (file)
@@ -108,6 +108,9 @@ CFLAGS += -include $(RTE_SDK_BIN)/include/rte_config.h
 LDFLAGS += -L$(RTE_SDK_BIN)/lib
 endif
 
+# always define _GNU_SOURCE
+CFLAGS += -D_GNU_SOURCE
+
 export CFLAGS
 export LDFLAGS
 
index 5d8b1dcb07b0a4af3f3f18b9f4e60c98f84d45ed..8c347e4638327d2f48cde11fed74184483d8132a 100644 (file)
@@ -210,8 +210,6 @@ CFLAGS += -DALLOW_EXPERIMENTAL_API
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
-CFLAGS += -D_GNU_SOURCE
-
 LDLIBS += -lm
 ifeq ($(CONFIG_RTE_COMPRESSDEV_TEST),y)
 ifeq ($(CONFIG_RTE_LIBRTE_COMPRESSDEV),y)
index 92104cd2049958cb732e67455c2275c8db1657ee..7c6e3b00b44dcd300422150b8eba463088cad44b 100644 (file)
@@ -253,6 +253,9 @@ if cc.has_argument('-Wno-format-truncation')
     cflags += '-Wno-format-truncation'
 endif
 
+# specify -D_GNU_SOURCE unconditionally
+default_cflags += '-D_GNU_SOURCE'
+
 test_dep_objs = []
 compress_test_dep = dependency('zlib', required: false)
 if compress_test_dep.found()