use a plain 'make toolchain' to build toolchain, and

support parallel make on this stage.
This commit is contained in:
Luigi Rizzo 2013-05-05 20:59:22 +00:00
parent 6691312c46
commit 6b7724bccf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250289

View File

@ -175,17 +175,10 @@ create_includes_and_libraries2() { # opt_dir opt_target
if [ -d "$1" ] ; then
cd $1 ; ${BINMAKE} ${o_par} $2 # specific target, e.g. ld-elf.so
else
MAKEOBJDIRPREFIX=${l_objtree}
export MAKEOBJDIRPREFIX
# export WITH_RESCUE=yes # build crunchide
# ${BINMAKE} ${o_par} _+_= $no toolchain _includes _libraries
(
# eval export `cd ${SRC}; ${BINMAKE} -f Makefile.inc1 -V BMAKEENV`
eval "export XMAKE=\"`cd ${SRC}; make -f Makefile -V XMAKE`\""
${BINMAKE} ${o_par} _+_= $no toolchain
)
export MAKEOBJDIRPREFIX=${l_objtree}
make ${o_par} $no toolchain
# XXX do we need any of these ?
eval export `cd ${SRC}; ${BINMAKE} -f Makefile.inc1 -V WMAKEENV`
${BINMAKE} ${o_par} _+_= $no _includes _libraries
[ ${o_arch} != `uname -m` ] && \
(cd ${l_objtree}; ln -s . ${o_arch}.${o_arch} || true )
fi
@ -442,7 +435,8 @@ do_kernel() { # OK
# export CONFIG
export WARNS CWARNFLAGS
[ "${o_do_modules}" = "yes" ] && export MODULES=""
${BINMAKE} ${o_par} KERNCONF=${l_kernconf} \
# kernel build not parallelizable yet
${BINMAKE} KERNCONF=${l_kernconf} \
-v -f ${PICO_TREE}/build/Makefile.conf ) || \
fail $? missing_kernel
}