From 1f5a90f28443886ebefcfbd531b8e41ece298cca Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Fri, 7 Feb 2014 18:33:04 +0000 Subject: Add a script for running art standalone. Change-Id: I0c48856d811c40662a6e4a4782478a0bc8e0f697 --- runtime/runtime.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'runtime/runtime.cc') diff --git a/runtime/runtime.cc b/runtime/runtime.cc index 4e90478..86fae82 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -754,6 +754,12 @@ Runtime::ParsedOptions* Runtime::ParsedOptions::Create(const Options& options, b parsed->image_ += GetAndroidRoot(); parsed->image_ += "/framework/boot.art"; } + if (!kIsTargetBuild && parsed->host_prefix_.empty()) { + const char* build_top = getenv("ANDROID_BUILD_TOP"); + if (build_top != NULL) { + parsed->host_prefix_ = build_top; + } + } if (parsed->heap_growth_limit_ == 0) { parsed->heap_growth_limit_ = parsed->heap_maximum_size_; } @@ -823,7 +829,7 @@ jobject CreateSystemClassLoader() { bool Runtime::Start() { VLOG(startup) << "Runtime::Start entering"; - CHECK(host_prefix_.empty()) << host_prefix_; + CHECK(!kIsTargetBuild || host_prefix_.empty()) << host_prefix_; // Restore main thread state to kNative as expected by native code. Thread* self = Thread::Current(); -- cgit v1.1