14 lines
535 B
Plaintext
14 lines
535 B
Plaintext
|
srpm gcc
|
||
|
mcd $BUILDDIR/gcc
|
||
|
|
||
|
# prefill gcc cache
|
||
|
echo 'lt_cv_shlibpath_overrides_runpath=no' > config.cache
|
||
|
echo 'gcc_cv_libc_provides_ssp=yes' >> config.cache
|
||
|
|
||
|
$SRC/gcc-*/configure $GCC_CONFIGARGS --with-headers=$ROOTFS/usr/include --cache-file=config.cache
|
||
|
notparallel
|
||
|
# Pass gcc_cv_libc_provides_ssp down, because the config.cache
|
||
|
# version is not passed down to the gcc subdir.
|
||
|
make $J all-target-libgcc all-target-libssp gcc_cv_libc_provides_ssp=yes
|
||
|
make $J install-target-libgcc install-target-libssp gcc_cv_libc_provides_ssp=yes
|