From: Chris Lattner Date: Sat, 23 Apr 2005 14:36:22 +0000 (+0000) Subject: Always enable the C backend. This fixes a *vast* number of failures on the X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3952bc6f39472cf9007ce2dfd5ff1ff5fdcd8bd2;p=oota-llvm.git 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21468 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llc/Makefile b/tools/llc/Makefile index c4af6d806a3..de56b856cc4 100644 --- a/tools/llc/Makefile +++ b/tools/llc/Makefile @@ -18,10 +18,8 @@ include $(LEVEL)/Makefile.config # 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))),)