Meson needs the "system = xyz" line when cross-compiling. We are already adding a "system = 'windows'" for the MinGW cross-compilation case here, so let's add a "system = 'linux'" now for Linux hosts, too.
Message-Id: <[email protected]> Acked-by: Paolo Bonzini <[email protected]> Signed-off-by: Thomas Huth <[email protected]> --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 59b7310e15..85461976b5 100755 --- a/configure +++ b/configure @@ -8194,6 +8194,9 @@ if test -n "$cross_prefix"; then ?:*) pre_prefix=/ ;; esac fi + if test "$linux" = "yes" ; then + echo "system = 'linux'" >> $cross + fi case "$ARCH" in i386|x86_64) echo "cpu_family = 'x86'" >> $cross -- 2.18.2
