From a3a49fe863e0bcf423ed0b4082136d1439fb2e79 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Tue, 19 May 2015 18:21:54 +0100 Subject: [PATCH] Switch to using ELF-64 for 64-bit architectures. Bug: 21297086 Change-Id: I4914e097ceffa58ddbe567d23ab563b0d9db1f66 --- compiler/driver/compiler_driver.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 47288b509..7cb7489d6 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. -- 2.11.0