From: Chris Lattner Date: Fri, 20 Sep 2002 22:32:00 +0000 (+0000) Subject: Build with $(CC), not gcc explicitly X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=61e4391b57a20213c7ee269591d34bb99c4efdea;p=oota-llvm.git Build with $(CC), not gcc explicitly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3869 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CBackend/Makefile b/test/CBackend/Makefile index 1ad566c63c8..5ee4ba741c1 100644 --- a/test/CBackend/Makefile +++ b/test/CBackend/Makefile @@ -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)