diff options
author | Anatoly Burakov <anatoly.burakov@intel.com> | 2018-10-04 11:20:33 +0100 |
---|---|---|
committer | Thomas Monjalon <thomas@monjalon.net> | 2018-10-22 11:28:27 +0200 |
commit | 5d7b673d5fd6663b20c675dd382d9fb43b42af18 (patch) | |
tree | 8cb3ffb659e34cc2d7eadda1880be3d6be885fa4 /test | |
parent | 739e13bcc98f562d3301f808ec76507ebae82e63 (diff) | |
download | dpdk-5d7b673d5fd6663b20c675dd382d9fb43b42af18.zip dpdk-5d7b673d5fd6663b20c675dd382d9fb43b42af18.tar.gz dpdk-5d7b673d5fd6663b20c675dd382d9fb43b42af18.tar.xz |
mk: build with _GNU_SOURCE defined by default
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>
Diffstat (limited to 'test')
-rw-r--r-- | test/test/Makefile | 2 | ||||
-rw-r--r-- | test/test/meson.build | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/test/Makefile b/test/test/Makefile index 5d8b1dc..8c347e4 100644 --- a/test/test/Makefile +++ b/test/test/Makefile @@ -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) diff --git a/test/test/meson.build b/test/test/meson.build index 92104cd..7c6e3b0 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -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() |