diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-06-17 20:09:18 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-06-17 20:09:18 +0000 |
commit | 52852708714c59baf1b0426bffe5d1546af61d46 (patch) | |
tree | 525067da8952a89e709eef7266b1b11604420eff /tools/bugpoint/Makefile | |
parent | 5768ff48507f990a18385464a78fe36f1d972b86 (diff) | |
download | external_llvm-52852708714c59baf1b0426bffe5d1546af61d46.zip external_llvm-52852708714c59baf1b0426bffe5d1546af61d46.tar.gz external_llvm-52852708714c59baf1b0426bffe5d1546af61d46.tar.bz2 |
Use $(PLATFORMLIBDL) to selectively bring in -ldl only on those platforms where
it is needed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6753 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/Makefile')
-rw-r--r-- | tools/bugpoint/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/Makefile b/tools/bugpoint/Makefile index b79e6c4..2c4a72b 100644 --- a/tools/bugpoint/Makefile +++ b/tools/bugpoint/Makefile @@ -8,6 +8,6 @@ ANALIBS = datastructure ipa target.a USEDLIBS = ipo scalaropts analysis $(OPTLIBS) $(ANALIBS) \ transformutils asmparser bcreader bcwriter vmcore support -TOOLLINKOPTS = -ldl +TOOLLINKOPTS = $(PLATFORMLIBDL) include $(LEVEL)/Makefile.common |