[oe-commits] [openembedded-core] 16/16: meson.bbclass: use HOST_CC_ARCH, not TARGET_CC_ARCH

git at git.openembedded.org git at git.openembedded.org
Thu Jan 11 17:24:48 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 7d192ba147d60ec6f006fc699a5750ca5d76090f
Author: Christopher Larson <chris_larson at mentor.com>
AuthorDate: Tue Jan 9 20:54:18 2018 +0500

    meson.bbclass: use HOST_CC_ARCH, not TARGET_CC_ARCH
    
    Using TARGET_CC_ARCH is inconsistent with CC, which uses HOST_CC_ARCH, and the
    rest of meson.bbclass, which uses HOST_PREFIX, HOST_OS, etc.
    
    Signed-off-by: Christopher Larson <chris_larson at mentor.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/meson.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass
index b72e520..4a4c51f 100644
--- a/meta/classes/meson.bbclass
+++ b/meta/classes/meson.bbclass
@@ -25,7 +25,7 @@ MESONOPTS = " --prefix ${prefix} \
               --localstatedir ${localstatedir} \
               --sharedstatedir ${sharedstatedir}"
 
-MESON_C_ARGS = "${TARGET_CC_ARCH}${TOOLCHAIN_OPTIONS}"
+MESON_C_ARGS = "${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}"
 MESON_LINK_ARGS = "${MESON_C_ARGS} ${LDFLAGS}"
 
 # both are required but not used by meson

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list