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/image.cc | |
parent | 093aad184b4451639951a7e012d9b55cbf8c8a07 (diff) | |
download | art-9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40.zip art-9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40.tar.gz art-9583fbcf597eff6d0b3c5359b8e8d5f70ed82c40.tar.bz2 |
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/image.cc')
-rw-r--r-- | runtime/image.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/image.cc b/runtime/image.cc index 702cc9a..528bfc6 100644 --- a/runtime/image.cc +++ b/runtime/image.cc @@ -24,7 +24,7 @@ namespace art { const byte ImageHeader::kImageMagic[] = { 'a', 'r', 't', '\n' }; -const byte ImageHeader::kImageVersion[] = { '0', '0', '6', '\0' }; +const byte ImageHeader::kImageVersion[] = { '0', '0', '7', '\0' }; ImageHeader::ImageHeader(uint32_t image_begin, uint32_t image_size, |