aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorAdam C. Foltzer <acfoltzer@galois.com>2017-06-05 10:23:20 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2017-06-14 14:51:15 +0200
commit77eae90ef5ca3f9a4bdf5727a29713dd2b215165 (patch)
tree697d6f4d0b60f1f7e553ce7212a28f4340d4d1ff /meta-oe
parent163abe723deb89577fd83a69ce016c47738b0e8d (diff)
downloadmeta-openembedded-contrib-77eae90ef5ca3f9a4bdf5727a29713dd2b215165.tar.gz
meson: fix build/host confusion for bbclass
Meson and Bitbake use different terminology for the build and host; this provides the correct build machine info to Meson. Signed-off-by: Adam C. Foltzer <acfoltzer@galois.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/classes/meson.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/classes/meson.bbclass b/meta-oe/classes/meson.bbclass
index c33174a218..d2ae626ebe 100644
--- a/meta-oe/classes/meson.bbclass
+++ b/meta-oe/classes/meson.bbclass
@@ -66,9 +66,9 @@ c_link_args = [${@meson_array('TOOLCHAIN_OPTIONS', d)}]
cpp_link_args = [${@meson_array('TOOLCHAIN_OPTIONS', d)}]
[host_machine]
-system = '${HOST_OS}'
-cpu_family = '${HOST_ARCH}'
-cpu = '${HOST_ARCH}'
+system = '${BUILD_OS}'
+cpu_family = '${BUILD_ARCH}'
+cpu = '${BUILD_ARCH}'
endian = '${MESON_HOST_ENDIAN}'
[target_machine]