From 8a61e0c0c53275ebc623296f46676d920b11eb3b Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Tue, 9 Jan 2018 20:54:18 +0500 Subject: 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 Signed-off-by: Richard Purdie --- meta/classes/meson.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/classes') diff --git a/meta/classes/meson.bbclass b/meta/classes/meson.bbclass index b72e5207ab..4a4c51f840 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 -- cgit 1.2.3-korg