mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-18 16:37:21 -05:00
82 lines
2.6 KiB
Bash
82 lines
2.6 KiB
Bash
#!/bin/sh
|
|
#---------------------------------------------------------------------------------
|
|
# Check Parameters
|
|
#---------------------------------------------------------------------------------
|
|
|
|
prefix=$INSTALLDIR/devkitPSP
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# build and install binutils
|
|
#---------------------------------------------------------------------------------
|
|
|
|
mkdir -p $target/binutils
|
|
cd $target/binutils
|
|
|
|
../../$BINUTILS_SRCDIR/configure \
|
|
--prefix=$prefix --target=$target --disable-nls --disable-shared --disable-debug \
|
|
--disable-threads --with-gcc --with-gnu-as --with-gnu-ld --with-stabs \
|
|
2>&1 | tee $BUILDSCRIPTDIR/binutils_configure.log
|
|
|
|
|
|
$MAKE 2>&1 | tee binutils_make.log
|
|
$MAKE install 2>&1 | tee $BUILDSCRIPTDIR/binutils_install.log
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# build and install just the c compiler
|
|
#---------------------------------------------------------------------------------
|
|
mkdir -p $target/gcc
|
|
cd $target/gcc
|
|
|
|
|
|
../../$GCC_SRCDIR/configure \
|
|
--enable-languages=c,c++ \
|
|
--enable-interwork --disable-multilib\
|
|
--with-gcc --with-gnu-ld --with-gnu-as --with-stabs \
|
|
--disable-shared --disable-win32-registry --disable-nls\
|
|
--enable-cxx-flags="-G0" \
|
|
--target=$target \
|
|
--with-newlib \
|
|
--prefix=$prefix \
|
|
2>&1 | tee $BUILDSCRIPTDIR/gcc_configure.log
|
|
|
|
$MAKE all-gcc 2>&1| tee $BUILDSCRIPTDIR/gcc_make.log
|
|
$MAKE install-gcc 2>&1 | tee $BUILDSCRIPTDIR/gcc_install.log
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# build and install newlib
|
|
#---------------------------------------------------------------------------------
|
|
mkdir -p $target/newlib
|
|
cd $target/newlib
|
|
mkdir etc
|
|
|
|
$BUILDSCRIPTDIR/$NEWLIB_SRCDIR/configure \
|
|
--target=$target \
|
|
--prefix=$prefix \
|
|
| tee $BUILDSCRIPTDIR/newlib_configure.log
|
|
|
|
$MAKE | tee $BUILDSCRIPTDIR/newlib_make.log
|
|
$MAKE install | tee $BUILDSCRIPTDIR/newlib_install.log
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# build and install the final compiler
|
|
#---------------------------------------------------------------------------------
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
cd $target/gcc
|
|
|
|
$MAKE | tee $BUILDSCRIPTDIR/gcc_final_make.log 2>&1
|
|
$MAKE install | tee $BUILDSCRIPTDIR/gcc_final_install.log 2>&1
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# remove temp stuff to conserve disc space
|
|
#---------------------------------------------------------------------------------
|
|
rm -fr $target/gcc
|
|
rm -fr $GCC_SRCDIR
|