added gamecube tools

errors fixed in clean targets
mn10200 binutils added to devkitPPC
devkitARM scripts updated with error checking
This commit is contained in:
Dave Murphy 2005-08-25 06:41:51 +00:00
parent 6b5ebcb45f
commit eff8e0ff4d
5 changed files with 56 additions and 24 deletions

View File

@ -260,8 +260,6 @@ export MAKE
patchdir=$(pwd)/$basedir/patches
scriptdir=$(pwd)/$basedir/scripts
echo $patchdir
#---------------------------------------------------------------------------------
# Extract source packages
#---------------------------------------------------------------------------------

View File

@ -15,7 +15,7 @@ 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; }
|| { echo "Error configuring binutils"; exit 1; }
$MAKE || { echo "Error building binutils"; exit 1; }
$MAKE install || { echo "Error installing binutils"; exit 1; }
@ -40,7 +40,7 @@ cd $target/gcc
--with-cpu=arm7tdmi\
--enable-interwork --enable-multilib\
--with-gcc --with-gnu-ld --with-gnu-as --with-stabs \
--disable-shared --disable-threads --disable-win32-registry --disable-nls\
--disable-shared --disable-threads --disable-win32-registry --disable-nls --disable-debug\
--target=$target \
--with-newlib \
--prefix=$prefix -v\
@ -61,10 +61,9 @@ cd $target/newlib
mkdir -p etc
$BUILDSCRIPTDIR/$NEWLIB_SRCDIR/configure \
--enable-serial-configure \
--disable-debug \
--target=$target \
--prefix=$prefix \
--enable-newlib-mb \
|| { echo "Error configuring newlib"; exit 1; }
$MAKE || { echo "Error building newlib"; exit 1; }

View File

@ -1,14 +1,14 @@
#!/bin/sh
DEVKITPPC=$INSTALLDIR/devkitPPC
DEVKITPPC=$TOOLPATH/devkitPPC
#---------------------------------------------------------------------------------
# Install and build the gamecube crt and libogc
#---------------------------------------------------------------------------------
echo "installing specs ..."
powerpc-gekko-gcc -dumpspecs $DEVKITPPC/lib/gcc/$target/$GCC_VER/specs
cp `pwd`/dkppc/crtls/gcn* $DEVKITPPC/$target/lib/
cp `pwd`/dkpppc/crtls/ogc.ld $DEVKITPPC/$target/lib/
cp `pwd`/dkppc/crtls/specs $DEVKITPPC/lib/gcc/$target/$GCC_VER/specs
echo "building libogc ..."
@ -21,6 +21,6 @@ $MAKE install
# copy base rulesets
#---------------------------------------------------------------------------------
cd $BUILDSCRIPTDIR
cp dkp-rules/* $DEVKITPPC
cp dkppc/rules/gamecube_rules dkppc/rules/base_rules $DEVKITPPC

View File

@ -6,7 +6,7 @@
prefix=$INSTALLDIR/devkitPPC
#---------------------------------------------------------------------------------
# build and install binutils
# build and install ppc binutils
#---------------------------------------------------------------------------------
mkdir -p $target/binutils
@ -15,11 +15,11 @@ cd $target/binutils
../../$BINUTILS_SRCDIR/configure \
--prefix=$prefix --target=$target --disable-nls --disable-shared --disable-debug \
--with-gcc --with-gnu-as --with-gnu-ld --with-stabs \
2>&1 | tee binutils_configure.log
|| { echo "Error configuing ppc binutils"; exit 1; }
$MAKE | tee binutils_make.log 2>&1
$MAKE install | tee binutils_install.log 2>&1
$MAKE || { echo "Error building ppc binutils"; exit 1; }
$MAKE install || { echo "Error installing ppc binutils"; exit 1; }
cd $BUILDSCRIPTDIR
@ -27,6 +27,30 @@ cd $BUILDSCRIPTDIR
# remove temp stuff to conserve disc space
#---------------------------------------------------------------------------------
rm -fr $target/binutils
#---------------------------------------------------------------------------------
# build and install mn10200 binutils
#---------------------------------------------------------------------------------
mkdir -p mn10200/binutils
cd mn10200/binutils
../../$BINUTILS_SRCDIR/configure \
--prefix=$prefix --target=mn10200 --disable-nls --disable-shared --disable-debug \
--with-gcc --with-gnu-as --with-gnu-ld --with-stabs \
|| { echo "Error configuing mn10200 binutils"; exit 1; }
$MAKE || { echo "Error building mn10200 binutils"; exit 1; }
$MAKE install || { echo "Error installing mn10200 binutils"; exit 1; }
cd $BUILDSCRIPTDIR
#---------------------------------------------------------------------------------
# remove temp stuff to conserve disc space
#---------------------------------------------------------------------------------
rm -fr mn10200/binutils
rm -fr $BINUTILS_SRCDIR
#---------------------------------------------------------------------------------
@ -41,7 +65,7 @@ cd $target/gcc
--with-cpu=750\
--with-gcc --with-gnu-ld --with-gnu-as --with-stabs \
--with-included-gettext --without-headers\
--disable-nls --disable-shared --enable-threads --disable-multilib\
--disable-nls --disable-shared --enable-threads --disable-multilib --disable-debug\
--disable-win32-registry\
--target=$target \
--with-newlib \
@ -50,8 +74,8 @@ cd $target/gcc
mkdir -p libiberty libcpp fixincludes
$MAKE all-gcc | tee gcc_make.log 2>&1
$MAKE install-gcc | tee gcc_install.log 2>&1
$MAKE all-gcc || { echo "Error building gcc"; exit 1; }
$MAKE install-gcc || { echo "Error installing gcc"; exit 1; }
#---------------------------------------------------------------------------------
# build and install newlib
@ -62,12 +86,12 @@ cd $target/newlib
mkdir -p etc
$BUILDSCRIPTDIR/$NEWLIB_SRCDIR/configure --target=$target \
--prefix=$prefix \
--enable-serial-configure \
| tee newlib_configure.log 2>&1
--prefix=$prefix \
--disable-debug \
|| { echo "Error configuring newlib"; exit 1; }
$MAKE all | tee newlib_make.log
$MAKE install | tee newlib_install.log
$MAKE || { echo "Error building newlib"; exit 1; }
$MAKE install || { echo "Error installing newlib"; exit 1; }
cd $BUILDSCRIPTDIR
@ -83,8 +107,8 @@ rm -fr $NEWLIB_SRCDIR
cd $target/gcc
$MAKE | tee gcc_final_make.log 2>&1
$MAKE install | tee gcc_final_install.log 2>&1
$MAKE || { echo "Error building g++"; exit 1; }
$MAKE install || { echo "Error installing g++"; exit 1; }
cd $BUILDSCRIPTDIR

View File

@ -0,0 +1,11 @@
#!/bin/sh
export DEVKITPPC=$TOOLPATH/devkitPPC
export DEVKITPRO=$TOOLPATH
$MAKE -C tools/gamecube
$MAKE -C tools/gamecube install PREFIX=$DEVKITPPC/bin
$MAKE -C tools clean