From 0bbc2ac6dae9ce2838f23a75a6a989826c06f3f5 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Mon, 20 Apr 2015 20:22:44 +0000 Subject: Use the gold linker for aarch64/linux (#9673) Like 32 bit Arm, Aarch64 requires use of the gold linker. Signed-off-by: Erik de Castro Lopo Test Plan: 'make install' on aarch64, validate elsewhere Reviewers: rwbarton, bgamari, austin Subscribers: thomie Differential Revision: https://phabricator.haskell.org/D858 GHC Trac Issues: #9673 --- aclocal.m4 | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'aclocal.m4') diff --git a/aclocal.m4 b/aclocal.m4 index 33a51badbb..d6352cf029 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -565,9 +565,11 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], $3="$$3 -D_HPUX_SOURCE" $5="$$5 -D_HPUX_SOURCE" ;; - arm*linux*) - # On arm/linux and arm/android, tell gcc to link using the gold linker. - # Forcing LD to be ld.gold is done in configre.ac. + arm*linux* | \ + aarch64*linux* ) + # On arm/linux, aarch64/linux, arm/android and aarch64/android, tell + # gcc to link using the gold linker. + # Forcing LD to be ld.gold is done in FIND_LD m4 macro. $3="$$3 -fuse-ld=gold" ;; esac @@ -2093,10 +2095,12 @@ AC_DEFUN([FIND_LLVM_PROG],[ AC_DEFUN([FIND_LD],[ FP_ARG_WITH_PATH_GNU_PROG([LD], [ld], [ld]) case $target in - arm*linux*) - # Arm requires use of the binutils ld.gold linker. - # This case should catch at least arm-unknown-linux-gnueabihf and - # arm-linux-androideabi. + arm*linux* | \ + aarch64*linux* ) + # Arm and Aarch64 requires use of the binutils ld.gold linker. + # This case should catch at least arm-unknown-linux-gnueabihf, + # arm-linux-androideabi, arm64-unknown-linux and + # aarch64-linux-android FP_ARG_WITH_PATH_GNU_PROG([LD_GOLD], [ld.gold], [ld.gold]) $1="$LD_GOLD" ;; -- cgit v1.2.1