Attempt to fix random build failures seen when doing highly

parallel builds: the gold plugin fails to link because the lto
library is in the middle of being written out by the linker.

llvm-svn: 98054
This commit is contained in:
Duncan Sands 2010-03-09 09:03:21 +00:00
parent 625a7248d6
commit 26e65e7ee8

View File

@ -42,8 +42,7 @@ ifeq ($(ENABLE_PIC),1)
# 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
DIRS += lto gold
else
PARALLEL_DIRS += lto
endif