[llvm-commits] CVS: llvm/Makefile.rules

Devang Patel dpatel at apple.com
Fri Jul 21 12:45:09 PDT 2006



Changes in directory llvm:

Makefile.rules updated: 1.387 -> 1.388
---
Log message:

Fix MacOSX build failures. (pr841: http://llvm.org/PR841 )


---
Diffs of the changes:  (+5 -4)

 Makefile.rules |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.387 llvm/Makefile.rules:1.388
--- llvm/Makefile.rules:1.387	Thu Jul 20 19:10:06 2006
+++ llvm/Makefile.rules	Fri Jul 21 14:44:55 2006
@@ -609,7 +609,8 @@
 Link += -dlopen self
 
 # Generic JIT libraries
-JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen.a LLVMExecutionEngine
+JIT_LIBS := LLVMInterpreter LLVMJIT LLVMSelectionDAG.a LLVMCodeGen.a \
+            LLVMExecutionEngine
 
 # You can enable the X86 JIT on a non-X86 host by setting the flag
 # ENABLE_X86_JIT on the make command line. If not, it will still be
@@ -620,7 +621,7 @@
 
 # What the X86 JIT requires
 ifdef ENABLE_X86_JIT
-  JIT_LIBS += LLVMX86 LLVMSelectionDAG.a
+  JIT_LIBS += LLVMX86 
 endif
 
 # You can enable the PowerPC JIT on a non-PowerPC host by setting the flag
@@ -632,7 +633,7 @@
 
 # What the PowerPC JIT requires
 ifdef ENABLE_PPC_JIT
-  JIT_LIBS += LLVMPowerPC LLVMSelectionDAG.a
+  JIT_LIBS += LLVMPowerPC 
 endif
 
 # You can enable the Alpha JIT on a non-Alpha host by setting the flag
@@ -644,7 +645,7 @@
 
 # What the Alpha JIT requires
 ifdef ENABLE_ALPHA_JIT
-  JIT_LIBS += LLVMAlpha LLVMSelectionDAG.a
+  JIT_LIBS += LLVMAlpha 
 endif
 
 LLVMLIBS := $(JIT_LIBS) LLVMScalarOpts.a LLVMTransformUtils.a LLVMAnalysis.a \






More information about the llvm-commits mailing list