Fix x86 build in app_process.

Look for __i386__ and not __x86__.

(cherry picked from commit 47d526217b3fd0d17ba751c66d25cfaf1c6ed7cd)

Change-Id: I848ba351c378e59ab6744ca1983ae4463ae75ba4
This commit is contained in:
Narayan Kamath
2014-04-30 16:45:07 +01:00
parent 973cdeed8e
commit d6183204e4

View File

@@ -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";