mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-13 00:39:46 +00:00
73 lines
1.3 KiB
Bash
73 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
# Extract and switch to the directory
|
|
cd $LFS/sources
|
|
tar xf gcc-12.2.0.tar.xz
|
|
cd $LFS/sources/gcc-12.2.0
|
|
|
|
tar -xf ../mpfr-4.1.0.tar.xz
|
|
mv -v mpfr-4.1.0 mpfr
|
|
tar -xf ../gmp-6.2.1.tar.xz
|
|
mv -v gmp-6.2.1 gmp
|
|
tar -xf ../mpc-1.2.1.tar.gz
|
|
mv -v mpc-1.2.1 mpc
|
|
|
|
case $(uname -m) in
|
|
x86_64)
|
|
sed -e '/m64=/s/lib64/lib/' \
|
|
-i.orig gcc/config/i386/t-linux64
|
|
;;
|
|
esac
|
|
|
|
mkdir -v build
|
|
cd build
|
|
|
|
../configure \
|
|
--target=$LFS_TGT \
|
|
--prefix=$LFS/tools \
|
|
--with-glibc-version=2.36 \
|
|
--with-sysroot=$LFS \
|
|
--with-newlib \
|
|
--without-headers \
|
|
--disable-nls \
|
|
--disable-shared \
|
|
--disable-multilib \
|
|
--disable-decimal-float \
|
|
--disable-threads \
|
|
--disable-libatomic \
|
|
--disable-libgomp \
|
|
--disable-libquadmath \
|
|
--disable-libssp \
|
|
--disable-libvtv \
|
|
--disable-libstdcxx \
|
|
--enable-languages=c,c++
|
|
|
|
# Exit on error
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make -j5
|
|
|
|
# Exit on error
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make install
|
|
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
cd ..
|
|
cat gcc/limitx.h gcc/glimits.h gcc/limity.h > \
|
|
`dirname $($LFS_TGT-gcc -print-libgcc-file-name)`/install-tools/include/limits.h
|
|
|
|
|
|
cd $LFS/sources
|
|
rm -rf gcc-12.2.0
|