From: Ross Burton Date: Mon, 14 Oct 2019 14:08:59 +0000 (+0100) Subject: qemu-helper-native: pass compiler flags X-Git-Tag: uninative-2.8~1219 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=05151064eb2c0907ebb815c9ae3481a912835b39;p=openembedded-core.git qemu-helper-native: pass compiler flags Pass all of the compiler and linker flags so the build is correctly configured. Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb index d9d9da0fad..372eebd886 100644 --- a/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb +++ b/meta/recipes-devtools/qemu/qemu-helper-native_1.0.bb @@ -12,7 +12,7 @@ S = "${WORKDIR}" inherit native do_compile() { - ${CC} tunctl.c -o tunctl + ${CC} ${CFLAGS} ${LDFLAGS} -Wall tunctl.c -o tunctl } do_install() {