projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90d7119
)
Build with $(CC), not gcc explicitly
author
Chris Lattner
<sabre@nondot.org>
Fri, 20 Sep 2002 22:32:00 +0000
(22:32 +0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/test/CBackend/Makefile
b/test/CBackend/Makefile
index 1ad566c63c832021404821725ff6278191411810..5ee4ba741c142826528a8daced08b07909425373 100644
(file)
--- 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)