[llvm-commits] [llvm] r98054 - /llvm/trunk/tools/Makefile

Duncan Sands baldrick at free.fr
Tue Mar 9 01:03:21 PST 2010


Author: baldrick
Date: Tue Mar  9 03:03:21 2010
New Revision: 98054

URL: http://llvm.org/viewvc/llvm-project?rev=98054&view=rev
Log:
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.

Modified:
    llvm/trunk/tools/Makefile

Modified: llvm/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/Makefile?rev=98054&r1=98053&r2=98054&view=diff
==============================================================================
--- llvm/trunk/tools/Makefile (original)
+++ llvm/trunk/tools/Makefile Tue Mar  9 03:03:21 2010
@@ -42,8 +42,7 @@
     # 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





More information about the llvm-commits mailing list