install only the components of gcc we actually want

additionally force the install step to be non-parallel, as there's
something broken (at least with gcc 4.8.5, some commands get executed
in the parent shell after make already finished).
This commit is contained in:
rofl0r 2015-11-02 15:28:06 +00:00
parent 1f0c5a1f13
commit f7512f6b5d

View File

@ -117,7 +117,12 @@ steps/build_gcc: steps/configure_gcc
touch $@
steps/install_gcc: steps/build_gcc
cd gcc-$(GCC_VER)/build && $(MAKE) install
cd gcc-$(GCC_VER)/build && $(MAKE) -j1 \
install-gcc \
install-lto-plugin \
install-target-libgcc \
install-target-libssp \
install-target-libstdc++-v3
touch $@