Merge "Add mips64 support to app_process."
This commit is contained in:
@ -146,8 +146,10 @@ static void maybeCreateDalvikCache() {
|
|||||||
static const char kInstructionSet[] = "arm";
|
static const char kInstructionSet[] = "arm";
|
||||||
#elif defined(__i386__)
|
#elif defined(__i386__)
|
||||||
static const char kInstructionSet[] = "x86";
|
static const char kInstructionSet[] = "x86";
|
||||||
#elif defined (__mips__)
|
#elif defined (__mips__) && !defined(__LP64__)
|
||||||
static const char kInstructionSet[] = "mips";
|
static const char kInstructionSet[] = "mips";
|
||||||
|
#elif defined (__mips__) && defined(__LP64__)
|
||||||
|
static const char kInstructionSet[] = "mips64";
|
||||||
#else
|
#else
|
||||||
#error "Unknown instruction set"
|
#error "Unknown instruction set"
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user