diff options
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/tools/Makefile b/tools/Makefile index 4788bfb..1ea2311 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -8,9 +8,16 @@ ##===----------------------------------------------------------------------===## LEVEL := .. -PARALLEL_DIRS := llvm-config opt llvm-as llvm-dis llc llvm-bcanalyzer \ - llvm-extract lli llvm-db llvm-ar llvm-ld llvm-prof llvm-nm \ - gccas llvm-ranlib llvm-stub gccld llvm2cpp \ - bugpoint llvmc llvm-link +# Note .. the tools are organized in triples consisting of one large and two +# small executables. This is done to minimize memory load in parallel builds. +# Please retain this ordering. +PARALLEL_DIRS := llvm-config \ + opt llvm-as llvm-dis \ + llc llvm-ranlib llvm-ar \ + lli llvm-link llvm-nm \ + bugpoint llvm-db llvm-extract \ + gccas llvm-bcanalyzer llvm-stub \ + gccld llvm2cpp \ + llvm-ld llvmc llvm-prof include $(LEVEL)/Makefile.common |