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

Rafael Espindola rafael.espindola at gmail.com
Mon Aug 9 07:05:42 PDT 2010


Author: rafael
Date: Mon Aug  9 09:05:42 2010
New Revision: 110573

URL: http://llvm.org/viewvc/llvm-project?rev=110573&view=rev
Log:
Don't try to build a plugin on windows.

Modified:
    llvm/trunk/tools/Makefile

Modified: llvm/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/Makefile?rev=110573&r1=110572&r2=110573&view=diff
==============================================================================
--- llvm/trunk/tools/Makefile (original)
+++ llvm/trunk/tools/Makefile Mon Aug  9 09:05:42 2010
@@ -20,7 +20,7 @@
                  llc llvm-ranlib llvm-ar llvm-nm \
                  llvm-ld llvm-prof llvm-link \
                  lli llvm-extract llvm-mc \
-                 bugpoint bugpoint-passes llvm-bcanalyzer llvm-stub \
+                 bugpoint llvm-bcanalyzer llvm-stub \
                  llvmc
 
 # Let users override the set of tools to build from the command line.
@@ -45,6 +45,8 @@
       PARALLEL_DIRS += lto
     endif
 
+    PARALLEL_DIRS += bugpoint-passes
+
     # The edis library is only supported if ARM and/or X86 are enabled, and if
     # LLVM is being built PIC on platforms that support dylibs.
     ifneq ($(DISABLE_EDIS),1)





More information about the llvm-commits mailing list