app/test: fix flags with meson
authorNatanael Copa <ncopa@alpinelinux.org>
Wed, 13 Mar 2019 17:06:51 +0000 (18:06 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Sun, 31 Mar 2019 00:03:08 +0000 (01:03 +0100)
commit302ea8e0fab497c55aaae51ebf084817958dec23
tree4421765a95916121957a596b538278719fddde47
parentf6d163a6dc39cdcc618f3e865658da508afeb527
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 <ncopa@alpinelinux.org>
app/test/meson.build