diff options
| author | 2015-05-19 18:21:54 +0100 | |
|---|---|---|
| committer | 2015-05-19 18:25:52 +0100 | |
| commit | a3a49fe863e0bcf423ed0b4082136d1439fb2e79 (patch) | |
| tree | 3c761ab185e146e00275aed73b60e8fea6061c4a /compiler/driver/compiler_driver.cc | |
| parent | b258ce51247e775079a73805ed17e2a6255bb0e6 (diff) | |
Switch to using ELF-64 for 64-bit architectures.
Bug: 21297086
Change-Id: I4914e097ceffa58ddbe567d23ab563b0d9db1f66
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 47288b5098..7cb7489d65 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. Leave this off for now. -static constexpr bool kProduce64BitELFFiles = false; +// Whether to produce 64-bit ELF files for 64-bit targets. +static constexpr bool kProduce64BitELFFiles = true; // Whether classes-to-compile and methods-to-compile are only applied to the boot image, or, when // given, too all compilations. |