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 <[email protected]> --- meta-oe/classes/meson.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-oe/classes/meson.bbclass b/meta-oe/classes/meson.bbclass index c33174a..d2ae626 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] -- 2.9.4 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
