Build with $(CC), not gcc explicitly
authorChris Lattner <sabre@nondot.org>
Fri, 20 Sep 2002 22:32:00 +0000 (22:32 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Sep 2002 22:32:00 +0000 (22:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3869 91177308-0d34-0410-b5e6-96231b3b80d8

test/CBackend/Makefile

index 1ad566c63c832021404821725ff6278191411810..5ee4ba741c142826528a8daced08b07909425373 100644 (file)
@@ -15,7 +15,7 @@ all:: $(addprefix Output/, $(TESTS:%.ll=%.to))
 
 
 Output/%.to: Output/%.c
-       gcc -c -W -Wall $< -o $@ || \
+       $(CC) -c -W -Wall $< -o $@ || \
                (rm -f $@; $(FAILURE) $@ )
 
 Output/%.c: %.ll Output/.dir $(LAS) $(LDIS)