summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2015-04-20 20:22:44 +0000
committerAustin Seipp <austin@well-typed.com>2015-05-06 07:56:17 -0500
commit96c99d5cb38e16c7b81b5efc73caedd174e4e4bd (patch)
treeaaa9c59c66baa86fd5a379ee6a091717a513d340
parentd5c089208735014a09d43b1ee757f52ddbfc92bf (diff)
downloadhaskell-96c99d5cb38e16c7b81b5efc73caedd174e4e4bd.tar.gz
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 <erikd@mega-nerd.com> 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 (cherry picked from commit 0bbc2ac6dae9ce2838f23a75a6a989826c06f3f5)
-rw-r--r--aclocal.m418
1 files changed, 11 insertions, 7 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 63e21e5dfa..c08a28e6c3 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
@@ -2123,10 +2125,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"
;;