qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] fix configure for mips o32


From: Rtp
Subject: [Qemu-devel] [PATCH] fix configure for mips o32
Date: Wed, 03 Jun 2009 14:28:00 +0200

The commit 1ad2134f914dfd4c8f92307c94c9a5a1e28f0059 is defining
target_phys_bits and set it to 64 for all mips machines including mipsel
machines which are 32 bit. This patch set it to 32.

Signed-off-by: Arnaud Patard <address@hidden>
---
Index: qemu/configure
===================================================================
--- qemu.orig/configure
+++ qemu/configure
@@ -1970,7 +1970,7 @@ case "$target_cpu" in
     echo "#define TARGET_ARCH \"mips\"" >> $config_h
     echo "#define TARGET_MIPS 1" >> $config_h
     echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
-    target_phys_bits=64
+    target_phys_bits=32
   ;;
   mipsn32|mipsn32el)
     echo "TARGET_ARCH=mipsn32" >> $config_mak

reply via email to

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