]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Changed gcc version from 4.4.3 to 4.5.0.
authorBart Van Assche <bvanassche@acm.org>
Thu, 29 Apr 2010 05:53:22 +0000 (05:53 +0000)
committerBart Van Assche <bvanassche@acm.org>
Thu, 29 Apr 2010 05:53:22 +0000 (05:53 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11107

drd/scripts/download-and-build-gcc

index ab0e404de9971063127a45b76969a9de22018463..9197824116f2c7960170db4983e441bb998e0f33 100755 (executable)
@@ -6,7 +6,7 @@
 # are called gmp-devel and mpfr-devel.
 
 
-GCC_VERSION=4.4.3
+GCC_VERSION=4.5.0
 FSF_MIRROR=ftp://ftp.easynet.be/gnu
 SRCDIR=$HOME/software
 DOWNLOADS=$SRCDIR/downloads
@@ -27,6 +27,11 @@ if [ ! -e /usr/include/mpfr.h ]; then
   exit 1
 fi
 
+if [ ! -e /usr/include/mpc.h ]; then
+  echo "Please install the mpc library development package first."
+  exit 1
+fi
+
 rm -rf   ${BUILD}     || exit $?
 rm -rf   ${PREFIX}    || exit $?
 mkdir -p ${DOWNLOADS} || exit $?