summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2010-04-12 23:55:28 +0000
committerSean Callanan <scallanan@apple.com>2010-04-12 23:55:28 +0000
commit18d57661f3b5a30526e63a4de429db1d362fd6ab (patch)
tree9b7d8e6d9fc88763494d74718046d6dd0a1100f7 /tools/Makefile
parentbca091d5617ce78f300f9af4cb5515528b514147 (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 876d1653b81..9d2e576dfbd 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -18,13 +18,13 @@ OPTIONAL_PARALLEL_DIRS := clang
# 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