summaryrefslogtreecommitdiffstats
path: root/runtime/runtime.h
diff options
context:
space:
mode:
authorTsu Chiang Chuang <tsu@google.com>2014-05-22 10:22:25 -0700
committerBrian Carlstrom <bdc@google.com>2014-05-27 22:55:53 -0700
commit12e6d7446384a7a5fbec25fe116bbb271c62842e (patch)
treeced17862a2587c56cb53fe47b303841aac806dc6 /runtime/runtime.h
parent9bec54430e8609765740fdc51d24ed3f3c907919 (diff)
downloadart-12e6d7446384a7a5fbec25fe116bbb271c62842e.zip
art-12e6d7446384a7a5fbec25fe116bbb271c62842e.tar.gz
art-12e6d7446384a7a5fbec25fe116bbb271c62842e.tar.bz2
Add option to specify compiler executable.
Change-Id: I973da5e74be5a62461caacbc708288fb95e1b99b
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r--runtime/runtime.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h
index f7074f6..261429e 100644
--- a/runtime/runtime.h
+++ b/runtime/runtime.h
@@ -104,6 +104,8 @@ class Runtime {
return is_explicit_gc_disabled_;
}
+ std::string GetCompilerExecutable() const;
+
const std::vector<std::string>& GetCompilerOptions() const {
return compiler_options_;
}
@@ -482,6 +484,7 @@ class Runtime {
bool is_concurrent_gc_enabled_;
bool is_explicit_gc_disabled_;
+ std::string compiler_executable_;
std::vector<std::string> compiler_options_;
std::vector<std::string> image_compiler_options_;