mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
configure: fix detection for x32 linux-user
x32 uses the same signal handling fragments as x86_64, since host_arch is set to x86_64 when Meson runs. Remove the unnecessary forwarder and set the host_arch variable properly in configure. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Michael Tokarev <mjt@tls.msk.ru> Tested-by: Ilya Leoshkevich <iii@linux.ibm.com> Tested-by: Michael Tokarev <mjt@tls.msk.ru> Message-ID: <20230808120303.585509-2-pbonzini@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
9400601a68
commit
f140823c56
2 changed files with 2 additions and 1 deletions
2
configure
vendored
2
configure
vendored
|
@ -472,6 +472,8 @@ fi
|
|||
case "$cpu" in
|
||||
riscv*)
|
||||
host_arch=riscv ;;
|
||||
x32)
|
||||
host_arch=x86_64 ;;
|
||||
*)
|
||||
host_arch="$cpu" ;;
|
||||
esac
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
#include "../x86_64/host-signal.h"
|
Loading…
Reference in a new issue