aboutsummaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorDuane Sand <duanes@mips.com>2012-05-04 11:28:46 -0700
committerDuane Sand <duanes@mips.com>2012-05-04 11:28:46 -0700
commit9e15745b9f828db4eedf90a811becac95e02d5d3 (patch)
treef7ca26bc2fb4a6e33896e2b0884c88644262f8bd /android
parentca89c96a6d07859005f3a85170842d5e395cf5d6 (diff)
downloadexternal_qemu-9e15745b9f828db4eedf90a811becac95e02d5d3.zip
external_qemu-9e15745b9f828db4eedf90a811becac95e02d5d3.tar.gz
external_qemu-9e15745b9f828db4eedf90a811becac95e02d5d3.tar.bz2
Emulator64-mips segfaults, disable it for now.
Signed-off-by: Duane Sand <duanes@mips.com> Change-Id: I17fe688d19e3cd7f328721e6363bacd6e6689ca2
Diffstat (limited to 'android')
-rw-r--r--android/main-emulator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/main-emulator.c b/android/main-emulator.c
index 0981a71..ac4d2e9 100644
--- a/android/main-emulator.c
+++ b/android/main-emulator.c
@@ -148,6 +148,8 @@ int main(int argc, char** argv)
avdArch = "arm";
D("Can't determine target AVD architecture: defaulting to %s\n", avdArch);
}
+ if (!strcmp(avdArch, "mips"))
+ force_32bit = 1; /* emulator64-mips segfaults currently, 4-19-2012 */
/* Find the architecture-specific program in the same directory */
emulatorPath = getTargetEmulatorPath(argv[0], avdArch, force_32bit);