mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-08-25 20:04:02 -05:00
*** empty log message ***
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
DEVKITARM=$TOOLPATH/devkitARM
|
||||
export DEVKITARM=$TOOLPATH/devkitARM
|
||||
export DEVKITPRO=$TOOLPATH
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# Install and build the gba crt
|
||||
@@ -17,6 +18,7 @@ $MAKE CRT=ds_arm9
|
||||
$MAKE CRT=ds_cart
|
||||
|
||||
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
# copy base rulesets
|
||||
#---------------------------------------------------------------------------------
|
||||
|
||||
@@ -45,10 +45,10 @@ cd $target/gcc
|
||||
--target=$target \
|
||||
--with-newlib \
|
||||
--prefix=$prefix -v\
|
||||
2>&1 | tee gcc_configure.log
|
||||
2>&1 | tee $BUILDSCRIPTDIR/gcc_configure.log
|
||||
|
||||
$MAKE all-gcc | tee gcc_make.log 2>&1
|
||||
$MAKE install-gcc | tee gcc_install.log 2>&1
|
||||
$MAKE all-gcc | tee $BUILDSCRIPTDIR/gcc_make.log 2>&1
|
||||
$MAKE install-gcc | $BUILDSCRIPTDIR/tee gcc_install.log 2>&1
|
||||
|
||||
cd $BUILDSCRIPTDIR
|
||||
|
||||
@@ -61,11 +61,10 @@ cd $target/newlib
|
||||
$BUILDSCRIPTDIR/$NEWLIB_SRCDIR/configure --target=$target \
|
||||
--prefix=$prefix \
|
||||
--enable-serial-configure \
|
||||
--enable-newlib-mb \
|
||||
| tee newlib_configure.log 2>&1
|
||||
| tee $BUILDSCRIPTDIR/newlib_configure.log 2>&1
|
||||
|
||||
$MAKE all | tee newlib_make.log 2>&1
|
||||
$MAKE install | tee newlib_install.log 2>&1
|
||||
$MAKE all | tee $BUILDSCRIPTDIR/newlib_make.log 2>&1
|
||||
$MAKE install | tee $BUILDSCRIPTDIR/newlib_install.log 2>&1
|
||||
|
||||
cd $BUILDSCRIPTDIR
|
||||
|
||||
@@ -82,8 +81,8 @@ rm -fr $NEWLIB_SRCDIR
|
||||
cd $BUILDSCRIPTDIR
|
||||
cd $target/gcc
|
||||
|
||||
$MAKE | tee gcc_final_make.log 2>&1
|
||||
$MAKE install | tee gcc_final_install.log 2>&1
|
||||
$MAKE | tee $BUILDSCRIPTDIR/gcc_final_make.log 2>&1
|
||||
$MAKE install | tee $BUILDSCRIPTDIR/gcc_final_install.log 2>&1
|
||||
|
||||
cd $BUILDSCRIPTDIR
|
||||
|
||||
|
||||
@@ -18,10 +18,8 @@ else
|
||||
exit -1
|
||||
fi
|
||||
fi
|
||||
|
||||
export DEVKITARM=$TOOLPATH/devkitARM
|
||||
export DEVKITPRO=$TOOLPATH
|
||||
export LIBNDS=$TOOLPATH/libnds
|
||||
|
||||
$MAKE -C tools/gba
|
||||
$MAKE -C tools/gba install PREFIX=$DEVKITARM/bin
|
||||
@@ -34,6 +32,7 @@ $MAKE -C tools/nds/ndstool install PREFIX=$DEVKITARM/bin
|
||||
$MAKE -C tools/nds/dsbuild
|
||||
$MAKE -C tools/nds/dsbuild install PREFIX=$DEVKITARM/bin
|
||||
|
||||
chmod +x tools/general/alignbin
|
||||
cp tools/general/alignbin $DEVKITARM/bin/alignbin
|
||||
|
||||
# Awaiting Mr_Spiv's permission to add to project
|
||||
|
||||
Reference in New Issue
Block a user