mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-04-16 23:06:08 -05:00
95 lines
3.0 KiB
Bash
95 lines
3.0 KiB
Bash
#!/bin/sh
|
|
|
|
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 \
|
|
|| { echo "Error configuring binutils"; exit 1; }
|
|
|
|
|
|
$MAKE || { echo "Error building binutils"; exit 1; }
|
|
$MAKE install || { echo "Error installing binutils"; exit 1; }
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# remove temp stuff to conserve disc space
|
|
#---------------------------------------------------------------------------------
|
|
rm -fr $target/binutils
|
|
rm -fr $BINUTILS_SRCDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# 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 \
|
|
--without-headers \
|
|
--prefix=$prefix \
|
|
|| { echo "Error configuring gcc"; exit 1; }
|
|
|
|
mkdir -p libiberty libcpp fixincludes
|
|
|
|
$MAKE all-gcc || { echo "Error building gcc"; exit 1; }
|
|
$MAKE install-gcc || { echo "Error installing gcc"; exit 1; }
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# build and install newlib
|
|
#---------------------------------------------------------------------------------
|
|
mkdir -p $target/newlib
|
|
cd $target/newlib
|
|
mkdir etc
|
|
|
|
$BUILDSCRIPTDIR/$NEWLIB_SRCDIR/configure \
|
|
--target=$target \
|
|
--prefix=$prefix \
|
|
|| { echo "Error configuring newlib"; exit 1; }
|
|
|
|
$MAKE || { echo "Error building newlib"; exit 1; }
|
|
$MAKE install || { echo "Error installing newlib"; exit 1; }
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# remove temp stuff to conserve disc space
|
|
#---------------------------------------------------------------------------------
|
|
rm -fr $target/newlib
|
|
rm -fr $NEWLIB_SRCDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# build and install the final compiler
|
|
#---------------------------------------------------------------------------------
|
|
|
|
cd $target/gcc
|
|
|
|
$MAKE || { echo "Error building g++"; exit 1; }
|
|
$MAKE install || { echo "Error installing g++"; exit 1; }
|
|
|
|
|
|
cd $BUILDSCRIPTDIR
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# remove temp stuff to conserve disc space
|
|
#---------------------------------------------------------------------------------
|
|
rm -fr $target/gcc
|
|
rm -fr $GCC_SRCDIR
|