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

Sean Callanan scallanan at apple.com
Mon Apr 12 16:55:28 PDT 2010


Author: spyffe
Date: Mon Apr 12 18:55:28 2010
New Revision: 101095

URL: http://llvm.org/viewvc/llvm-project?rev=101095&view=rev
Log:
Build system fix to make llvm-mc properly build
after edis.  Really, there ought to be some
mechanism to ensure that PARALLEL_DIRS get built
after DIRS.

Modified:
    llvm/trunk/tools/Makefile

Modified: llvm/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/Makefile?rev=101095&r1=101094&r2=101095&view=diff
==============================================================================
--- llvm/trunk/tools/Makefile (original)
+++ llvm/trunk/tools/Makefile Mon Apr 12 18:55:28 2010
@@ -18,13 +18,13 @@
 
 # libEnhancedDisassembly must be built ahead of llvm-mc
 # because llvm-mc links against libEnhancedDisassembly
-DIRS := llvm-config edis
+DIRS := llvm-config edis llvm-mc
 PARALLEL_DIRS := opt llvm-as llvm-dis \
                  llc llvm-ranlib llvm-ar llvm-nm \
                  llvm-ld llvm-prof llvm-link \
                  lli llvm-extract \
                  bugpoint llvm-bcanalyzer llvm-stub \
-                 llvm-mc llvmc
+                 llvmc
 
 # Let users override the set of tools to build from the command line.
 ifdef ONLY_TOOLS





More information about the llvm-commits mailing list