diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2017-05-11 18:12:33 +0800 |
---|---|---|
committer | Moritz Angermann <moritz.angermann@gmail.com> | 2017-05-11 18:31:24 +0800 |
commit | 5ddb307edf15c4d86e5c35c4063ec967424e19f2 (patch) | |
tree | c3eb1267950a43e582b5e83d8a48a7c250448998 /distrib | |
parent | 8d4bce42de7929b0dec7e7d68e66bcfc4d266322 (diff) | |
download | haskell-5ddb307edf15c4d86e5c35c4063ec967424e19f2.tar.gz |
Do not hardcode the specific linker to use
This should be handled appropriately by a wrapper script around the compiler,
if one wants to insist on the specific linker to be used. Otherwise this
breaks if the used compiler fails to understand this directive.
I believe that using a specific linker should be part of the compilers
toolchain, we delegate to and not hardcoded here in ghc.
Reviewers: dfeuer, erikd, hvr, austin, rwbarton, bgamari
Reviewed By: bgamari
Subscribers: snowleopard, davean, dfeuer, thomie, erikd
Differential Revision: https://phabricator.haskell.org/D3351
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/configure.ac.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distrib/configure.ac.in b/distrib/configure.ac.in index ffa057449d..cea3c493e9 100644 --- a/distrib/configure.ac.in +++ b/distrib/configure.ac.in @@ -86,7 +86,7 @@ AC_SUBST([OptCmd]) dnl ** Which ld to use? dnl -------------------------------------------------------------- -FIND_LD([LdCmd]) +FIND_LD([$target],[LdCmd]) AC_SUBST([LdCmd]) FP_GCC_VERSION |