* [Qemu-devel] [PATCH] Darwin: Check for x86_64 only on i386
@ 2009-02-22 20:09 Alexander Graf
0 siblings, 0 replies; only message in thread
From: Alexander Graf @ 2009-02-22 20:09 UTC (permalink / raw)
To: qemu-devel; +Cc: Alexander Graf, andreas.faerber
The sysctl variable if we're 64-bit capable only exists on i386. So we should only check it if we're on i386.
This suppresses a warning on PowerPC spotted by Andreas Faerber.
Signed-off-by: Alexander Graf <alex@csgraf.de>
---
configure | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index c3fbbbe..62925d8 100755
--- a/configure
+++ b/configure
@@ -244,9 +244,9 @@ Darwin)
bsd="yes"
darwin="yes"
# on Leopard most of the system is 32-bit, so we have to ask the kernel it if we can run 64-bit userspace code
-is_x86_64=`sysctl -n hw.optional.x86_64`
-if [ "$is_x86_64" = "1" ]; then
- cpu=x86_64
+if [ "$cpu" = "i386" ] ; then
+ is_x86_64=`sysctl -n hw.optional.x86_64`
+ [ "$is_x86_64" = "1" ] && cpu=x86_64
fi
if [ "$cpu" = "x86_64" ] ; then
OS_CFLAGS="-arch x86_64"
--
1.5.3.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-02-22 20:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-22 20:09 [Qemu-devel] [PATCH] Darwin: Check for x86_64 only on i386 Alexander Graf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).