From 1e866c433abe2dcde169030c60ecbd6955a1d52d Mon Sep 17 00:00:00 2001 From: Jehan Date: Thu, 19 Sep 2024 15:04:20 +0200 Subject: [PATCH] meson: fix non-x86 builds. The Aarch64 build failed with the following error because of a recent change: > ../meson.build:617:24: ERROR: Unknown variable "have_x86". --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 11f4e6ff5d..d54b287f9f 100644 --- a/meson.build +++ b/meson.build @@ -116,6 +116,8 @@ host_cpu_family = host_machine.cpu_family() message('Host machine cpu family: ' + host_cpu_family) host_cpu_family = host_machine.cpu_family() +have_x86 = false +have_ppc = false if host_cpu_family == 'x86' have_x86 = true conf.set10('ARCH_X86', true)