diff options
author | Simon Marlow <marlowsd@gmail.com> | 2018-02-21 14:16:00 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2018-02-21 17:03:01 +0000 |
commit | 0a3629af36e89de73b7012c726fd533c4c5460fb (patch) | |
tree | 98c109e2168f6c9d80eee23b08a35bbf05ddd33b /configure.ac | |
parent | a032ff77210736df45cf49820c882f40dc10230e (diff) | |
download | haskell-0a3629af36e89de73b7012c726fd533c4c5460fb.tar.gz |
Don't use ld.gold when building libraries for GHCi
Summary:
ld.gold is buggy when using -r and a linker script. See upstream bug
https://sourceware.org/bugzilla/show_bug.cgi?id=22266
This has been causing various brokenness for the GHC runtime linker,
where we load these broken object files.
Test Plan: Test program from #14675
Reviewers: bgamari, RyanGlScott, alpmestan, hvr, erikd
Subscribers: rwbarton, thomie, erikd, carter
GHC Trac Issues: #14328, #14675, #14291
Differential Revision: https://phabricator.haskell.org/D4431
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 216a97fb49..216f43fa7c 100644 --- a/configure.ac +++ b/configure.ac @@ -544,8 +544,10 @@ FIND_LD([$target],[GccUseLdOpt]) CONF_GCC_LINKER_OPTS_STAGE1="$CONF_GCC_LINKER_OPTS_STAGE1 $GccUseLdOpt" CONF_GCC_LINKER_OPTS_STAGE2="$CONF_GCC_LINKER_OPTS_STAGE2 $GccUseLdOpt" LdCmd="$LD" +LdNoGoldCmd="$LD_NO_GOLD" CFLAGS="$CFLAGS $GccUseLdOpt" AC_SUBST([LdCmd]) +AC_SUBST([LdNoGoldCmd]) FP_PROG_LD_IS_GNU FP_PROG_LD_BUILD_ID |