[llvm-commits] [llvm] r82873 - /llvm/trunk/Makefile
Torok Edwin
edwintorok at gmail.com
Sat Sep 26 13:18:58 PDT 2009
Author: edwin
Date: Sat Sep 26 15:18:58 2009
New Revision: 82873
URL: http://llvm.org/viewvc/llvm-project?rev=82873&view=rev
Log:
Speed up clang-only link, by really linking only clang, and not the unittests
too.
Modified:
llvm/trunk/Makefile
Modified: llvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile?rev=82873&r1=82872&r2=82873&view=diff
==============================================================================
--- llvm/trunk/Makefile (original)
+++ llvm/trunk/Makefile Sat Sep 26 15:18:58 2009
@@ -62,7 +62,7 @@
endif
ifeq ($(MAKECMDGOALS),clang-only)
- DIRS := $(filter-out tools runtime docs, $(DIRS)) tools/clang
+ DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
OPTIONAL_DIRS :=
endif
More information about the llvm-commits
mailing list