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

Chris Lattner lattner at cs.uiuc.edu
Sat Apr 23 07:36:39 PDT 2005



Changes in directory llvm/tools/llc:

Makefile updated: 1.70 -> 1.71
---
Log message:

Always enable the C backend.  This fixes a *vast* number of failures on the
testers last night, as llc was not getting the cbe linked in.


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

 Makefile |    4 +---
 1 files changed, 1 insertion(+), 3 deletions(-)


Index: llvm/tools/llc/Makefile
diff -u llvm/tools/llc/Makefile:1.70 llvm/tools/llc/Makefile:1.71
--- llvm/tools/llc/Makefile:1.70	Fri Apr 22 12:32:05 2005
+++ llvm/tools/llc/Makefile	Sat Apr 23 09:36:22 2005
@@ -18,10 +18,8 @@
 # Initialize the USEDLIBS so we can add to it
 USEDLIBS :=
 
-# Check for LLVMCBackend  target
-ifneq ($(strip $(filter CBackend,$(TARGETS_TO_BUILD))),)
+# Always add the C Backend
 USEDLIB += LLVMCBackend
-endif
 
 # Check for Skeleton target
 ifneq ($(strip $(filter Skeleton,$(TARGETS_TO_BUILD))),)






More information about the llvm-commits mailing list