[llvm-commits] CVS: llvm/tools/Makefile

Chandler Carruth chandlerc at gmail.com
Sun Jan 7 22:25:46 PST 2007



Changes in directory llvm/tools:

Makefile updated: 1.60 -> 1.61
---
Log message:

Build libLLVMlto on non-Darwin architectures. Resolves PR1055: http://llvm.org/PR1055 : http://llvm.org/PR1055: http://llvm.org/PR1055 


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

 Makefile |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.60 llvm/tools/Makefile:1.61
--- llvm/tools/Makefile:1.60	Fri Dec  1 22:46:36 2006
+++ llvm/tools/Makefile	Mon Jan  8 00:25:29 2007
@@ -22,8 +22,8 @@
 
 include $(LEVEL)/Makefile.config
 
-# Disable liblto on non-darwin platforms right now until LLVM is built PIC.
-ifeq ($(OS), Darwin)
+# Disable liblto on Windows until compatability is determined.
+ifneq ($(OS), MingW)
 PARALLEL_DIRS += lto
 endif
 






More information about the llvm-commits mailing list