diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-02-28 15:21:07 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-03-04 16:30:48 +0000 |
commit | 9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40 (patch) | |
tree | 847912709f811adda0fa63e89e4bf8af27769f2e /runtime/parsed_options.cc | |
parent | 093aad184b4451639951a7e012d9b55cbf8c8a07 (diff) | |
download | art-9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40.tar.gz art-9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40.tar.bz2 art-9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40.zip |
Remove oat file location in the image.
The oat file is now always in the same directory, and has the
same name as the image file. Only difference is the extension.
This also removes the need for host-prefix.
Change-Id: I16d1f7aeb1d58372d41921694664e9c321afc1ad
Diffstat (limited to 'runtime/parsed_options.cc')
-rw-r--r-- | runtime/parsed_options.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index c5b1c4b558..765074ad95 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -427,8 +427,6 @@ bool ParsedOptions::Parse(const Runtime::Options& options, bool ignore_unrecogni return false; } hook_abort_ = reinterpret_cast<void(*)()>(const_cast<void*>(hook)); - } else if (option == "host-prefix") { - host_prefix_ = reinterpret_cast<const char*>(options[i].second); } else if (option == "-Xmethod-trace") { method_trace_ = true; } else if (StartsWith(option, "-Xmethod-trace-file:")) { |