mirror of
https://github.com/richfelker/musl-cross-make.git
synced 2025-04-19 07:24:59 +02:00
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:
parent
1f0c5a1f13
commit
f7512f6b5d
7
Makefile
7
Makefile
@ -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 $@
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user