diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-06-16 22:30:38 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-06-16 22:30:38 +0000 |
commit | e2a91a76dffcf8cda97b835f0693f9dc6f26ba68 (patch) | |
tree | 5d25de616c3f0b9175308cbba3c1f4b40ab40f7c /Makefile.config.in | |
parent | dc9c76aca6cc31ee5c26c0356e10955b3e0b0440 (diff) |
build/configure: Add support for --with-extra-ld-options flag (to provide extra
options just to pass to ld).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133206 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 5c73758063..9bdb07563f 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -123,6 +123,9 @@ TARGET_TRIPLE=@target@ # Extra options to compile LLVM with EXTRA_OPTIONS=@EXTRA_OPTIONS@ +# Extra options to link LLVM with +EXTRA_LD_OPTIONS=@EXTRA_LD_OPTIONS@ + # Endian-ness of the target ENDIAN=@ENDIAN@ |