| 558 | } |
| 559 | |
| 560 | std::string Runtime::GetCompilerExecutable() const { |
| 561 | if (!compiler_executable_.empty()) { |
| 562 | return compiler_executable_; |
| 563 | } |
| 564 | std::string compiler_executable(GetAndroidRoot()); |
| 565 | compiler_executable += (kIsDebugBuild ? "/bin/dex2oatd" : "/bin/dex2oat"); |
| 566 | return compiler_executable; |
| 567 | } |
| 568 | |
| 569 | bool Runtime::Start() { |
| 570 | VLOG(startup) << "Runtime::Start entering"; |