summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-04-30 16:45:07 +0100
committerNarayan Kamath <narayan@google.com>2014-04-30 16:45:07 +0100
commit6eb1b2611cd2db7f2c2063f8be219d4ef19d11d0 (patch)
tree901d755c7c0aa4091b63ed70deb90497b9aee1d2 /cmds
parentab45d1d6d296f4f61632a472cf7bd8626c8d5a06 (diff)
downloadframeworks_base-6eb1b2611cd2db7f2c2063f8be219d4ef19d11d0.zip
frameworks_base-6eb1b2611cd2db7f2c2063f8be219d4ef19d11d0.tar.gz
frameworks_base-6eb1b2611cd2db7f2c2063f8be219d4ef19d11d0.tar.bz2
Fix x86 build in app_process.
Look for __i386__ and not __x86__. Change-Id: Iffa3709f9d0c96cce17f3183a6f036a78eccc787
Diffstat (limited to 'cmds')
-rw-r--r--cmds/app_process/app_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp
index 391c197..74ccbc2 100644
--- a/cmds/app_process/app_main.cpp
+++ b/cmds/app_process/app_main.cpp
@@ -145,7 +145,7 @@ static void maybeCreateDalvikCache() {
static const char kInstructionSet[] = "x86_64";
#elif defined(__arm__)
static const char kInstructionSet[] = "arm";
-#elif defined(__x86__)
+#elif defined(__i386__)
static const char kInstructionSet[] = "x86";
#elif defined (__mips__)
static const char kInstructionSet[] = "mips";