diff options
Diffstat (limited to 'dex2oat')
-rw-r--r-- | dex2oat/dex2oat.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index d3e56da..823b818 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -1101,6 +1101,9 @@ static int dex2oat(int argc, char** argv) { DexFileToMethodInlinerMap method_inliner_map; CompilerCallbacksImpl callbacks(&verification_results, &method_inliner_map); runtime_options.push_back(std::make_pair("compilercallbacks", &callbacks)); + runtime_options.push_back( + std::make_pair("imageinstructionset", + reinterpret_cast<const void*>(GetInstructionSetString(instruction_set)))); Dex2Oat* p_dex2oat; if (!Dex2Oat::Create(&p_dex2oat, |