[llvm-commits] [test-suite] r82569 - /test-suite/trunk/Makefile.rules
Bob Wilson
bob.wilson at apple.com
Tue Sep 22 13:56:30 PDT 2009
Author: bwilson
Date: Tue Sep 22 15:56:30 2009
New Revision: 82569
URL: http://llvm.org/viewvc/llvm-project?rev=82569&view=rev
Log:
Change LCC1 and LCC1XX to be copied from LLVMCC1 and LLVMCC1PLUS. They
had been derived from LLVMGCCLIBEXEC, but if that variable is not defined,
they end up being set to "/cc1" and "/cc1plus". Since these variables are
used as dependencies in make rules, having them defined with those bogus
values causes make to ignore the pattern rules where they are used, leading
to very unexpected errors that are hard to track down.
Also remove LCOLLECT2 since I can't anything that uses it.
Modified:
test-suite/trunk/Makefile.rules
Modified: test-suite/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.rules?rev=82569&r1=82568&r2=82569&view=diff
==============================================================================
--- test-suite/trunk/Makefile.rules (original)
+++ test-suite/trunk/Makefile.rules Tue Sep 22 15:56:30 2009
@@ -811,9 +811,8 @@
endif
-LCC1 := $(LLVMGCCLIBEXEC)/cc1
-LCC1XX := $(LLVMGCCLIBEXEC)/cc1plus
-LCOLLECT2 :=$(LLVMGCCLIBEXEC)/collect2
+LCC1 := $(LLVMCC1)
+LCC1XX := $(LLVMCC1PLUS)
#---------------------------------------------------------
More information about the llvm-commits
mailing list