qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6640] Darwin: Check for x86_64 only on i386


From: malc
Subject: [Qemu-devel] [6640] Darwin: Check for x86_64 only on i386
Date: Mon, 23 Feb 2009 14:11:10 +0000

Revision: 6640
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6640
Author:   malc
Date:     2009-02-23 14:11:10 +0000 (Mon, 23 Feb 2009)

Log Message:
-----------
Darwin: Check for x86_64 only on i386

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 <address@hidden>

Modified Paths:
--------------
    trunk/configure

Modified: trunk/configure
===================================================================
--- trunk/configure     2009-02-23 13:16:07 UTC (rev 6639)
+++ trunk/configure     2009-02-23 14:11:10 UTC (rev 6640)
@@ -244,9 +244,9 @@
 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"






reply via email to

[Prev in Thread] Current Thread [Next in Thread]