From 6239b77c78b4b584274019130b715f21ac9defdf Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Tue, 30 Jul 2019 17:54:26 +0200 Subject: meson.bbclass: do not pass native compiler/linker flags via command line With 0.51.0 version these command line options override what is in the cross file (e.g. the cross-flags). I could not determine what is the scenario when the native flags are needed (this would be building a native binary in the context of cross build). If we find such a scenario we would need to find a way to pass native flags through some other channel. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- meta/classes/meson.bbclass | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'meta/classes/meson.bbclass') diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass index 626b0e789b..dafdd18bf4 100644 --- a/meta/classes/meson.bbclass +++ b/meta/classes/meson.bbclass @@ -24,11 +24,7 @@ MESONOPTS = " --prefix ${prefix} \ --infodir ${@noprefix('infodir', d)} \ --sysconfdir ${sysconfdir} \ --localstatedir ${localstatedir} \ - --sharedstatedir ${sharedstatedir} \ - -Dc_args='${BUILD_CPPFLAGS} ${BUILD_CFLAGS}' \ - -Dc_link_args='${BUILD_LDFLAGS}' \ - -Dcpp_args='${BUILD_CPPFLAGS} ${BUILD_CXXFLAGS}' \ - -Dcpp_link_args='${BUILD_LDFLAGS}'" + --sharedstatedir ${sharedstatedir} " EXTRA_OEMESON_append = " ${PACKAGECONFIG_CONFARGS}" -- cgit 1.2.3-korg