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

Andrew Lenharth alenhar2 at cs.uiuc.edu
Thu Jul 20 10:28:12 PDT 2006



Changes in directory llvm:

Makefile.rules updated: 1.385 -> 1.386
---
Log message:

Fix linking on Alpha

---
Diffs of the changes:  (+3 -3)

 Makefile.rules |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.385 llvm/Makefile.rules:1.386
--- llvm/Makefile.rules:1.385	Tue Jul 11 13:33:50 2006
+++ llvm/Makefile.rules	Thu Jul 20 12:27:58 2006
@@ -253,8 +253,8 @@
 
 #Make Floating point ieee complient on alpha
 ifeq ($(ARCH),Alpha)
-  CXX.Flags     += -mieee
-  CPP.BaseFlags += -mieee
+  CXX.Flags     += -mieee -fPIC
+  CPP.BaseFlags += -mieee -fPIC
 endif
 
 #--------------------------------------------------------------------
@@ -609,7 +609,7 @@
 Link += -dlopen self
 
 # Generic JIT libraries
-JIT_LIBS := LLVMInterpreter LLVMJIT LLVMCodeGen LLVMExecutionEngine
+JIT_LIBS := LLVMInterpreter LLVMJIT 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






More information about the llvm-commits mailing list