Skip to content
Snippets Groups Projects
Commit 043e70f3 authored by John Hodge's avatar John Hodge
Browse files

BuildCrossCompiler - Use parallel build

parent cdb090a8
No related merge requests found
......@@ -36,6 +36,6 @@ cd ..
mkdir -p ${ARCH}
cd ${ARCH}
(mkdir -p binutils && cd binutils && ../../${BINUTILS}/configure --prefix=${PREFIX} --disable-nls --target=${TRIPLE} && echo "MAKEINFO = :" >> Makefile && make && make install)
(mkdir -p gcc && cd gcc && ../../${GCC}/configure --prefix=${PREFIX} --disable-nls --enable-langs=c --target=${TRIPLE} && make all-gcc all-target-libgcc && make install-gcc install-target-libgcc)
(mkdir -p binutils && cd binutils && ../../${BINUTILS}/configure --prefix=${PREFIX} --disable-nls --target=${TRIPLE} && echo "MAKEINFO = :" >> Makefile && make -j 3 && make install)
(mkdir -p gcc && cd gcc && ../../${GCC}/configure --prefix=${PREFIX} --disable-nls --enable-langs=c --target=${TRIPLE} && make all-gcc all-target-libgcc -j 3 && make install-gcc install-target-libgcc)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment