upgrade gdb to 7.11

This commit is contained in:
Dave Murphy
2016-02-28 17:51:22 +00:00
parent eb23f198ad
commit 4c47502632
3 changed files with 4 additions and 14 deletions

View File

@@ -55,17 +55,7 @@ function extract_and_patch {
#---------------------------------------------------------------------------------
if [ ! -f extracted-$1 ]; then
echo "extracting $1"
if [ $3 == "bz2" ]; then
extractflags="-xjf"
archivetype=".tar.bz2"
elif [ $3 == "gz" ]; then
extractflags="-xzf"
archivetype=".tar.gz"
else
echo "invalid archive type"
exit 1
fi
tar $extractflags "$SRCDIR/$1-$2$archivetype" || { echo "Error extracting "$1; exit 1; }
tar -xf "$SRCDIR/$1-$2.tar.$3" || { echo "Error extracting "$1; exit 1; }
touch extracted-$1
fi
if [[ ! -f patched-$1 && -f $patchdir/$1-$2.patch ]]; then
@@ -191,7 +181,7 @@ DEVKITPRO_URL="http://downloads.sourceforge.net/devkitpro"
patchdir=$(pwd)/$basedir/patches
scriptdir=$(pwd)/$basedir/scripts
archives="binutils-${BINUTILS_VER}.tar.bz2 gcc-${GCC_VER}.tar.bz2 newlib-${NEWLIB_VER}.tar.gz gdb-${GDB_VER}.tar.bz2"
archives="binutils-${BINUTILS_VER}.tar.bz2 gcc-${GCC_VER}.tar.bz2 newlib-${NEWLIB_VER}.tar.gz gdb-${GDB_VER}.tar.xz"
if [ $VERSION -eq 1 ]; then
@@ -243,7 +233,7 @@ extract_and_patch binutils $BINUTILS_VER bz2
extract_and_patch gcc $GCC_VER bz2
rm -fr gcc-$GCC_VER/zlib
extract_and_patch newlib $NEWLIB_VER gz
extract_and_patch gdb $GDB_VER bz2
extract_and_patch gdb $GDB_VER xz
for archive in $targetarchives
do

View File

@@ -43,7 +43,7 @@ case "$VERSION" in
GCC_VER=5.3.0
BINUTILS_VER=2.25.1
NEWLIB_VER=2.0.0
GDB_VER=7.10
GDB_VER=7.11
basedir='dkppc'
package=devkitPPC
target=powerpc-eabi