From: Bart Van Assche Date: Fri, 21 Mar 2008 17:08:12 +0000 (+0000) Subject: Renamed inbound to downloads. X-Git-Tag: svn/VALGRIND_3_4_0~830 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c69163a96af75603194b48ea9b078f023257c987;p=thirdparty%2Fvalgrind.git Renamed inbound to downloads. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7743 --- diff --git a/exp-drd/docs/README.txt b/exp-drd/docs/README.txt index c3957dcd93..488df51b6e 100644 --- a/exp-drd/docs/README.txt +++ b/exp-drd/docs/README.txt @@ -256,27 +256,31 @@ Recompiling gcc is possible with e.g. the following shell script: --------------------------------------------------------------------------- #!/bin/sh +# Make sure that libgmp and libmpfr are installed before you run this script. +# On Debian systems, e.g. Ubuntu, you can install these libraries as follows: +# sudo apt-get install libgmp3-dev libmpfr-dev + GCC_VERSION=4.3.0 FSF_MIRROR=ftp://ftp.easynet.be/gnu SRCDIR=$HOME/software -INBOUND=$SRCDIR/inbound +DOWNLOADS=$SRCDIR/downloads SRC=$HOME/software/gcc-${GCC_VERSION} BUILD=${SRC}-build TAR=gcc-${GCC_VERSION}.tar.bz2 PREFIX=$HOME/gcc-${GCC_VERSION} -rm -rf ${BUILD} || exit $? -rm -rf ${PREFIX} || exit $? -mkdir -p ${BUILD} || exit $? -mkdir -p ${INBOUND} || exit $? -cd ${BUILD} || exit $? +rm -rf ${BUILD} || exit $? +rm -rf ${PREFIX} || exit $? +mkdir -p ${BUILD} || exit $? +mkdir -p ${DOWNLOADS} || exit $? +cd ${BUILD} || exit $? -if [ ! -e $INBOUND/$TAR ]; then - ( cd $INBOUND && wget -q $FSF_MIRROR/gcc/gcc-${GCC_VERSION}/$TAR ) +if [ ! -e $DOWNLOADS/$TAR ]; then + ( cd $DOWNLOADS && wget -q $FSF_MIRROR/gcc/gcc-${GCC_VERSION}/$TAR ) fi if [ ! -e $SRC ]; then - ( cd $SRCDIR && tar -xjf $INBOUND/$TAR ) + ( cd $SRCDIR && tar -xjf $DOWNLOADS/$TAR ) fi ${SRC}/configure \