Rearrange the build order to better accommodate parallel build by reducing

memory pressure. This order spaces out large executables with small ones in
between so that in a -j2 or -j3 build, it only attempts to build only one
large executable at time. If you're doing -j4, you probably have enuogh
memory anyway.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29835 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-08-22 23:21:21 +00:00
parent cab0e43829
commit ab96bb1df3

View File

@ -8,8 +8,9 @@
##===----------------------------------------------------------------------===##
LEVEL := ..
PARALLEL_DIRS := llvm-config llvm-as llvm-dis opt gccas llc llvm-link lli gccld\
llvm-stub llvm-extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
llvm-bcanalyzer llvmc llvm-ld llvm-db bugpoint llvm2cpp
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
include $(LEVEL)/Makefile.common