Index: build-mspgcc =================================================================== RCS file: /cvsroot/tinyos/tinyos-1.x/tools/src/mspgcc/build-mspgcc,v retrieving revision 1.7 diff -r1.7 build-mspgcc 1c1 < #!/bin/bash --- > !/bin/bash 62,63c62,66 < GCC32_URL="ftp://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.2.3/gcc-core-3.2.3.tar.bz2" < GCC33_URL="ftp://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.3.5/gcc-core-3.3.5.tar.bz2" --- > #GCC32_URL="ftp://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.2.3/gcc-core-3.2.3.tar.bz2" > GCC32_URL="http://ftp.gnu.org/gnu/gcc/gcc-3.2.3/gcc-core-3.2.3.tar.bz2" > #GCC33_URL="ftp://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.3.5/gcc-core-3.3.5.tar.bz2" > GCC33_URL="http://ftp.gnu.org/gnu/gcc/gcc-3.3.6/gcc-core-3.3.6.tar.bz2" > GCC34_URL="http://ftp.gnu.org/gnu/gcc/gcc-3.4.6/gcc-core-3.4.6.tar.bz2" 65c68,69 < MSPGCC_CVS_DATE="1 Jun 2005" # "now" is an option, see 1 Jun 2005 discussion thread "[tinyos-msp430] msp430 compiler tools" --- > #MSPGCC_CVS_DATE="1 Jun 2005" # "now" is an option, see 1 Jun 2005 discussion thread "[tinyos-msp430] msp430 compiler tools" > MSPGCC_CVS_DATE="now" # "now" is an option, see 1 Jun 2005 discussion thread "[tinyos-msp430] msp430 compiler tools" 70c74,76 < [ x$USE_GCC = x3.3 ] && GCC_URL="$GCC33_URL" --- > # MDW: HACKED TO USE GCC 3.3 instead of GCC 3.2 > #[ x$USE_GCC = x3.3 ] && GCC_URL="$GCC33_URL" > GCC_URL="$GCC33_URL" 88,93c94,100 < if [ x$USE_GCC = x3.3 ] < then < cp -a "$BUILD_BASE"/mspgcc-cvs/gcc/gcc-3.4/* . || exit 1 < else < cp -a "$BUILD_BASE"/mspgcc-cvs/gcc/gcc-3.3/* . || exit 1 < fi --- > cp -R -L -p "$BUILD_BASE"/mspgcc-cvs/gcc/gcc-3.4/* . || exit 1 > #if [ x$USE_GCC = x3.3 ] > #then > # cp -r "$BUILD_BASE"/mspgcc-cvs/gcc/gcc-3.4/* . || exit 1 > #else > # cp -r "$BUILD_BASE"/mspgcc-cvs/gcc/gcc-3.3/* . || exit 1 > #fi 272c279 < export PATH="$INSTALL_DIR/bin:/usr/local/bin:/usr/bin:/bin" --- > export PATH="$INSTALL_DIR/bin:/usr/local/bin:/usr/bin:/bin:/sw/bin"