1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

Speed up clang-only link, by really linking only clang, and not the unittests

too.

llvm-svn: 82873
This commit is contained in:
Torok Edwin 2009-09-26 20:18:58 +00:00
parent eafd25a098
commit 9d7a492755

View File

@ -62,7 +62,7 @@ ifeq ($(MAKECMDGOALS),install-clang)
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