projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0cb640
)
tcg-s390: correctly detect s390 with a 64-bit kernel
author
Aurelien Jarno
<aurelien@aurel32.net>
Sun, 13 Jun 2010 10:28:21 +0000
(12:28 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Sun, 13 Jun 2010 10:28:21 +0000
(12:28 +0200)
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index ced4d2fa1067188ac8696cb3495f1e1a1ae0d4e5..c0d8aa52b9b545979d0d0d1731dcafa3a8327d9a 100755
(executable)
--- a/
configure
+++ b/
configure
@@
-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