[llvm-commits] CVS: llvm/Makefile

Reid Spencer reid at x10sys.com
Fri Apr 7 14:45:36 PDT 2006



Changes in directory llvm:

Makefile updated: 1.54 -> 1.55
---
Log message:

Invert the tests on LLVMGCC_MAJVERS to check for value 4 instead of value
3. This ensures that if llvm-gcc isn't available and consequently the value
of LLVMGCC_MAJVERS is blank, that the old (include runtime) behavior will
persist.


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

 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/Makefile
diff -u llvm/Makefile:1.54 llvm/Makefile:1.55
--- llvm/Makefile:1.54	Fri Apr  7 11:21:59 2006
+++ llvm/Makefile	Fri Apr  7 16:45:23 2006
@@ -16,7 +16,7 @@
 else
   ifneq ($(MAKECMDGOALS),libs-only)
     DIRS += tools
-    ifeq ($(LLVMGCC_MAJVERS),3)
+    ifneq ($(LLVMGCC_MAJVERS),4)
       DIRS += runtime
     else
       $(warning Skipping runtime libraries, llvm-gcc 4 detected.)






More information about the llvm-commits mailing list