summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-05 00:54:45 +0000
committerChris Lattner <sabre@nondot.org>2010-03-05 00:54:45 +0000
commitf6dc18f9eb0feaf398ba372f0e01ec7abf013722 (patch)
tree2a460e8f2835a6c7de51eacda44dde0cd073be7d /tools/Makefile
parentf071d4efeb28eb13b59af4f6e3ed0f8e40c52551 (diff)
downloadllvm-f6dc18f9eb0feaf398ba372f0e01ec7abf013722.tar.gz
llvm-f6dc18f9eb0feaf398ba372f0e01ec7abf013722.tar.bz2
llvm-f6dc18f9eb0feaf398ba372f0e01ec7abf013722.tar.xz
liblto and gold don't need to be built in serial
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97770 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/Makefile b/tools/Makefile
index b6637a95f8..2db84c6422 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -33,15 +33,15 @@ endif
include $(LEVEL)/Makefile.config
ifeq ($(ENABLE_PIC),1)
- DIRS += lto
+ PARALLEL_DIRS += lto
ifdef BINUTILS_INCDIR
- DIRS += gold
+ PARALLEL_DIRS += gold
endif
endif
# No support for lto / gold on windows targets
ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
- DIRS := $(filter-out lto gold, $(DIRS))
+ PARALLEL_DIRS := $(filter-out lto gold, $(DIRS))
endif
# Only build edis if X86 target support is enabled.