Disable the ahead-of-time compilation for MIPS.
Bug: 14464004
Change-Id: I551c0dc4122853a1a9ab566d03bac74cc057cba5
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index d3e56da..340e623 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -1010,8 +1010,8 @@
}
if (compiler_filter_string == NULL) {
- if (instruction_set == kX86_64 || instruction_set == kArm64) {
- // TODO: currently x86-64 and arm64 are only interpreted.
+ if (instruction_set == kX86_64 || instruction_set == kArm64 || instruction_set == kMips) {
+ // TODO: implement/fix compilers for these architectures.
compiler_filter_string = "interpret-only";
} else if (image) {
compiler_filter_string = "speed";