diff options
| author | 2015-05-22 22:30:43 +0000 | |
|---|---|---|
| committer | 2015-05-22 22:30:43 +0000 | |
| commit | e7654e5ab8668d14aab0d4bf1b3631ef150b36dd (patch) | |
| tree | 1f56c282f93336e78f212df9b3b6f6e91a5964ab /compiler/driver/compiler_driver.cc | |
| parent | 8c83ef7abff3b96d9551da6b1c0c68497617f3f7 (diff) | |
| parent | 650f0c49ac4aff3c9f871cd041042ae28b7e1e0a (diff) | |
Merge "Revert "Switch to using ELF-64 for 64-bit architectures.""
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 5dc93ced3f..d352f39fbc 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -74,8 +74,8 @@ namespace art {  static constexpr bool kTimeCompileMethod = !kIsDebugBuild; -// Whether to produce 64-bit ELF files for 64-bit targets. -static constexpr bool kProduce64BitELFFiles = true; +// Whether to produce 64-bit ELF files for 64-bit targets. Leave this off for now. +static constexpr bool kProduce64BitELFFiles = false;  // Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when  // given, too all compilations. |