summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-05-16 15:45:02 -0700
committerAndreas Gampe <agampe@google.com>2014-05-16 15:45:02 -0700
commit6cd2845c8697074c97b01a68f241314aded9f492 (patch)
tree69b052b3b1ea0076b39a9f282f164af1c9e90603
parented4b6267dde3bc93fae9ce7000880ca017e04114 (diff)
downloadart-6cd2845c8697074c97b01a68f241314aded9f492.zip
art-6cd2845c8697074c97b01a68f241314aded9f492.tar.gz
art-6cd2845c8697074c97b01a68f241314aded9f492.tar.bz2
ART: Turn off ARM64 compilation for now
When no compiler filter string is given to dex2oat for ARM64, default to interpreter. Change-Id: I2a97e07b1d9b75a04aafe4aaa4437e500bdaf202
-rw-r--r--dex2oat/dex2oat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index ad796f8..874c324 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -1017,7 +1017,7 @@ static int dex2oat(int argc, char** argv) {
}
if (compiler_filter_string == nullptr) {
- if (instruction_set == kX86_64 || instruction_set == kMips) {
+ 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) {