1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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.

llvm-svn: 29835
This commit is contained in:
Reid Spencer 2006-08-22 23:21:21 +00:00
parent 89a87abbff
commit 84497f3ae4

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