diff options
author | Narayan Kamath <narayan@google.com> | 2014-05-01 10:39:55 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-05-01 10:39:55 +0000 |
commit | c8a045d451522adab5226b0063f3a15d34542bf7 (patch) | |
tree | 84ea46328305477785a0416373e8f0c219e779b1 /cmds | |
parent | ff34f6faaad21f5f72decc0b6a0bbde8dab68e29 (diff) | |
parent | 41f40581ee0284660d30be8ef28f6bf721c4ce10 (diff) | |
download | frameworks_base-c8a045d451522adab5226b0063f3a15d34542bf7.zip frameworks_base-c8a045d451522adab5226b0063f3a15d34542bf7.tar.gz frameworks_base-c8a045d451522adab5226b0063f3a15d34542bf7.tar.bz2 |
am 41f40581: Merge "Fix x86 build in app_process."
* commit '41f40581ee0284660d30be8ef28f6bf721c4ce10':
Fix x86 build in app_process.
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/app_process/app_main.cpp | 2 |
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"; |