mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
tcg-s390: correctly detect s390 with a 64-bit kernel
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
b0cb640ac1
commit
d66ed0eae9
1 changed files with 6 additions and 0 deletions
6
configure
vendored
6
configure
vendored
|
@ -193,6 +193,12 @@ elif check_define __mips__ ; then
|
|||
cpu="mips"
|
||||
elif check_define __ia64__ ; then
|
||||
cpu="ia64"
|
||||
elif check_define __s390__ ; then
|
||||
if check_define __s390x__ ; then
|
||||
cpu="s390x"
|
||||
else
|
||||
cpu="s390"
|
||||
fi
|
||||
else
|
||||
cpu=`uname -m`
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue