mirror of
https://github.com/xomboverlord/buildtools.git
synced 2026-01-10 17:56:38 +01:00
145 lines
3.2 KiB
Bash
Executable File
145 lines
3.2 KiB
Bash
Executable File
|
|
source scripts/functions.sh
|
|
|
|
# --- Variables ---
|
|
source scripts/config.sh
|
|
|
|
PREFIX=`pwd`/local
|
|
|
|
export PATH=$PREFIX/bin:$PATH
|
|
|
|
if [ $CLEAN -eq 1 ]; then
|
|
rm -rf $PREFIX build/*/
|
|
fi
|
|
|
|
|
|
# --- Directory creation ---
|
|
|
|
mkdir -p build
|
|
mkdir -p local
|
|
cd build
|
|
|
|
setphase "MAKE OBJECT DIRECTORIES"
|
|
mkdir -p binutils-obj
|
|
mkdir -p gcc-obj
|
|
mkdir -p newlib-obj
|
|
mkdir -p gmp-obj
|
|
mkdir -p mpfr-obj
|
|
mkdir -p mpc-obj
|
|
|
|
mkdir -p autoconf-obj
|
|
mkdir -p automake-obj
|
|
|
|
|
|
# --- Fetch and extract each package ---
|
|
source ../scripts/fetchandpatch.sh
|
|
|
|
|
|
# --- Compile all packages ---
|
|
|
|
setphase "COMPILE BINUTILS"
|
|
cd binutils-obj
|
|
../binutils-${BINUTILS_VER}/configure --target=$TARGET --prefix=$PREFIX --disable-werror --enable-gold --enable-plugins || exit
|
|
make -j$NCPU all-gold || exit
|
|
make -j$NCPU || exit
|
|
make install || exit
|
|
cd ..
|
|
|
|
setphase "COMPILE GMP"
|
|
cd gmp-obj
|
|
../gmp-${GMP_VER}/configure --prefix=$PREFIX --enable-cxx --disable-shared || exit
|
|
make -j$NCPU || exit
|
|
if [ $NOTEST -ne 1 ]; then
|
|
make check || exit
|
|
fi
|
|
make install || exit
|
|
cd ..
|
|
|
|
setphase "COMPILE MPFR"
|
|
cd mpfr-obj
|
|
../mpfr-${MPFR_VER}/configure --prefix=$PREFIX --with-gmp=$PREFIX --disable-shared
|
|
make -j$NCPU || exit
|
|
if [ $NOTEST -ne 1 ]; then
|
|
make check || exit
|
|
fi
|
|
make install || exit
|
|
cd ..
|
|
|
|
setphase "COMPILE MPC"
|
|
cd mpc-obj
|
|
../mpc-${MPC_VER}/configure --target=$TARGET --prefix=$PREFIX --with-gmp=$PREFIX --with-mpfr=$PREFIX --disable-shared || exit
|
|
make -j$NCPU || exit
|
|
if [ $NOTEST -ne 1 ]; then
|
|
make check || exit
|
|
fi
|
|
make install || exit
|
|
cd ..
|
|
|
|
|
|
setphase "AUTOCONF GCC"
|
|
cd gcc-${GCC_VER}/libstdc++-v3
|
|
#autoconf || exit
|
|
cd ../..
|
|
|
|
setphase "COMPILE GCC"
|
|
cd gcc-obj
|
|
../gcc-${GCC_VER}/configure --target=$TARGET --prefix=$PREFIX --enable-languages=c,c++ --disable-libssp --with-gmp=$PREFIX --with-mpfr=$PREFIX --with-mpc=$PREFIX --without-headers --disable-nls --with-newlib || exit
|
|
make -j$NCPU all-gcc || exit
|
|
make install-gcc || exit
|
|
cd ..
|
|
|
|
setphase "COMPILE AUTOCONF"
|
|
cd autoconf-obj
|
|
../autoconf-${AUTOCONF_VER}/configure --prefix=$PREFIX || exit
|
|
make -j$NCPU all || exit
|
|
make install || exit
|
|
cd ..
|
|
|
|
setphase "COMPILE AUTOMAKE"
|
|
cd automake-obj
|
|
../automake-${AUTOMAKE_VER}/configure --prefix=$PREFIX || exit
|
|
make -j$NCPU all || exit
|
|
make install || exit
|
|
cd ..
|
|
|
|
cd ../local/share
|
|
ln -s aclocal-1.11 aclocal
|
|
cd ../../build
|
|
|
|
hash -r
|
|
|
|
setphase "AUTOCONF NEWLIB-XOMB"
|
|
cd newlib-${NEWLIB_VER}/newlib/libc/sys
|
|
autoconf || exit
|
|
cd ${OSNAME}
|
|
autoreconf || exit
|
|
cd ../../../../..
|
|
|
|
setphase "CONFIGURE NEWLIB"
|
|
cd newlib-obj
|
|
../newlib-${NEWLIB_VER}/configure --target=$TARGET --prefix=$PREFIX --with-gmp=$PREFIX --with-mpfr=$PREFIX -enable-newlib-hw-fp || exit
|
|
|
|
setphase "COMPILE NEWLIB"
|
|
make -j$NCPU || exit
|
|
make install || exit
|
|
cd ..
|
|
|
|
setphase "PASS-2 COMPILE GCC"
|
|
cd gcc-obj
|
|
#make all-target-libgcc
|
|
#make install-target-libgcc
|
|
make -j$NCPU all-target-libstdc++-v3 || exit
|
|
make install-target-libstdc++-v3 || exit
|
|
make -j$NCPU all || exit
|
|
make install || exit
|
|
cd ..
|
|
|
|
setphase "PASS-2 COMPILE NEWLIB"
|
|
cp ../newlib-files/syscalls.c newlib-${NEWLIB_VER}/newlib/libc/sys/${OSNAME}/syscalls.c
|
|
|
|
cd newlib-obj
|
|
../newlib-${NEWLIB_VER}/configure --target=$TARGET --prefix=$PREFIX --with-gmp=$PREFIX --with-mpfr=$PREFIX -enable-newlib-hw-fp || exit
|
|
make -j$NCPU || exit
|
|
make install || exit
|
|
cd ..
|