From: Sean Callanan Date: Mon, 12 Apr 2010 23:55:28 +0000 (+0000) Subject: Build system fix to make llvm-mc properly build X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=18d57661f3b5a30526e63a4de429db1d362fd6ab;p=oota-llvm.git 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 --- 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