From 302ea8e0fab497c55aaae51ebf084817958dec23 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 13 Mar 2019 18:06:51 +0100 Subject: [PATCH] app/test: fix flags with meson in app/test/meson.build the default_cflag is never used so the -D_GNU_SOURCE was never passed as intended. Fixes the following build error with musl libc: lib/librte_eal/common/include/rte_lcore.h:26:9: error: unknown type name 'cpu_set_t' typedef cpu_set_t rte_cpuset_t; ^~~~~~~~~ The problem is that cpu_set_t is only defined when _GNU_SOURCE is set. Fixes: 5d7b673d5fd6 ("mk: build with _GNU_SOURCE defined by default") Cc: stable@dpdk.org Signed-off-by: Natanael Copa --- app/test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index ddb4d09ae0..c5e65fe66d 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -299,7 +299,7 @@ if cc.has_argument('-Wno-format-truncation') endif # specify -D_GNU_SOURCE unconditionally -default_cflags += '-D_GNU_SOURCE' +cflags += '-D_GNU_SOURCE' test_dep_objs = [] if dpdk_conf.has('RTE_LIBRTE_COMPRESSDEV') -- 2.20.1