2019-06-17 08:27:17 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
# Build must happen outside of gcc source.
|
2019-06-17 11:50:37 -06:00
|
|
|
mkdir -p gcc-build
|
|
|
|
cd gcc-build || return 1
|
2019-06-17 08:27:17 -06:00
|
|
|
|
|
|
|
export libat_cv_have_ifunc=no
|
|
|
|
|
2019-06-17 11:46:58 -06:00
|
|
|
../gcc/configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-multilib \
|
|
|
|
--disable-symvers \
|
|
|
|
--disable-libmpx \
|
|
|
|
--disable-libmudflap \
|
|
|
|
--disable-libsanitizer \
|
|
|
|
--disable-nls \
|
|
|
|
--disable-werror \
|
|
|
|
--disable-fixed-point \
|
|
|
|
--disable-libstdcxx-pch \
|
|
|
|
--enable-checking=release \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
--with-system-zlib \
|
|
|
|
--enable-__cxa_atexit \
|
|
|
|
--enable-default-pie \
|
|
|
|
--enable-default-ssp \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-threads \
|
|
|
|
--enable-tls \
|
|
|
|
--enable-languages=c,c++
|
2019-06-17 08:27:17 -06:00
|
|
|
|
|
|
|
make BOOT_CFLAGS='-O'
|
|
|
|
make DESTDIR="$1" install
|
2019-06-18 12:00:16 -06:00
|
|
|
|
|
|
|
# Remove all info files.
|
|
|
|
rm -rf "$1/usr/share/info"
|
2019-06-18 22:43:03 -06:00
|
|
|
|
|
|
|
# Some legacy programs will expect cc
|
2019-06-18 22:53:01 -06:00
|
|
|
ln -s gcc "$1/usr/bin/cc"
|