[llvm-commits] [llvm] r68721 - /llvm/trunk/Makefile.rules

Bill Wendling isanbard at gmail.com
Thu Apr 9 11:26:57 PDT 2009


Author: void
Date: Thu Apr  9 13:26:57 2009
New Revision: 68721

URL: http://llvm.org/viewvc/llvm-project?rev=68721&view=rev
Log:
Revert r68708. It was causing this failure in the self-hosting buildbot:

llvm[2]: Compiling lto.cpp for Debug build  (PIC)
make[2]: *** No rule to make target `/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.sh.build/Debug/lib/libLLVMBitWriter.a', needed by `/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.sh.build/Release/lib/libLTO.dylib'.  Stop.
make[1]: *** [all] Error 1
make: *** [all] Error 1

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=68721&r1=68720&r2=68721&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Thu Apr  9 13:26:57 2009
@@ -1547,7 +1547,7 @@
 # CHECK: Running the test suite
 ###############################################################################
 
-check:: tools-only
+check::
 	$(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
 	  if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
 	    $(EchoCmd) Running test suite ; \
@@ -1564,7 +1564,7 @@
 # UNITTESTS: Running the unittests test suite
 ###############################################################################
 
-unittests:: libs-only
+unittests::
 	$(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
 	  if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
 	    $(EchoCmd) Running unittests test suite ; \





More information about the llvm-commits mailing list