Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 093dad2a authored by Jeff Hao's avatar Jeff Hao Committed by android-build-merger
Browse files

am e06184e4: Merge "Add mips64 support to app_process."

automerge: 51bdc629

* commit '51bdc629':
  Add mips64 support to app_process.
parents 22810c4d 51bdc629
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -146,8 +146,10 @@ static void maybeCreateDalvikCache() {
    static const char kInstructionSet[] = "arm";
#elif defined(__i386__)
    static const char kInstructionSet[] = "x86";
#elif defined (__mips__)
#elif defined (__mips__) && !defined(__LP64__)
    static const char kInstructionSet[] = "mips";
#elif defined (__mips__) && defined(__LP64__)
    static const char kInstructionSet[] = "mips64";
#else
#error "Unknown instruction set"
#endif