From: Ross Burton Date: Mon, 14 Oct 2019 14:08:59 +0000 (+0100) Subject: qemu-helper-native: pass compiler flags X-Git-Tag: 2019-10.1-zeus~57 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b5f8274d75cb61beaf7dab3420bda206e45697ae;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 Signed-off-by: Armin Kuster --- 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() {