summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-05 02:34:34 +0000
committerChris Lattner <sabre@nondot.org>2010-03-05 02:34:34 +0000
commite5605778f5851f46c94524988af35d6a3e45318c (patch)
tree5bf408073f2ee7ba09fd336e57e2755af2f5b1b2 /tools/Makefile
parent808ab341b4572815a74235ef00ccb446d334b957 (diff)
downloadllvm-e5605778f5851f46c94524988af35d6a3e45318c.tar.gz
llvm-e5605778f5851f46c94524988af35d6a3e45318c.tar.bz2
llvm-e5605778f5851f46c94524988af35d6a3e45318c.tar.xz
apparently if gold is around lto needs to be part of DIRS.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97780 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 64179fd706..86ba72ddac 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -37,10 +37,15 @@ include $(LEVEL)/Makefile.config
ifeq ($(ENABLE_PIC),1)
# No support for dynamic libraries on windows targets.
ifneq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
- PARALLEL_DIRS += lto edis
- # gold only builds if binutils is around.
+ PARALLEL_DIRS += edis
+
+ # gold only builds if binutils is around. It requires "lto" to build before
+ # it so it is added to DIRS.
ifdef BINUTILS_INCDIR
PARALLEL_DIRS += gold
+ DIRS += lto
+ else
+ PARALLEL_DIRS += lto
endif
endif
endif