[llvm-commits] CVS: llvm/tools/lli/Makefile
    Brian Gaeke 
    gaeke at cs.uiuc.edu
       
    Tue Jun 17 15:10:10 PDT 2003
    
    
  
Changes in directory llvm/tools/lli:
Makefile updated: 1.30 -> 1.31
---
Log message:
Use $(PLATFORMLIBDL) to selectively bring in -ldl only on those platforms where
it is needed.
---
Diffs of the changes:
Index: llvm/tools/lli/Makefile
diff -u llvm/tools/lli/Makefile:1.30 llvm/tools/lli/Makefile:1.31
--- llvm/tools/lli/Makefile:1.30	Tue Jun 17 14:14:59 2003
+++ llvm/tools/lli/Makefile	Tue Jun 17 15:09:18 2003
@@ -29,6 +29,6 @@
 # Have gcc tell the linker to export symbols from the program so that
 # dynamically loaded modules can be linked against them.
 #
-TOOLLINKOPTS = -ldl
+TOOLLINKOPTS = $(PLATFORMLIBDL)
 
 include $(LEVEL)/Makefile.common
    
    
More information about the llvm-commits
mailing list