|
From: <sv...@va...> - 2008-06-12 13:49:45
|
Author: bart Date: 2008-06-12 14:49:49 +0100 (Thu, 12 Jun 2008) New Revision: 8225 Log: Replaced gcc version 3.4.0 by 3.4.1. Set LC_ALL=C such that gcc's warning messages show up properly in emacs compile window. Modified: trunk/exp-drd/scripts/compile-gcc Modified: trunk/exp-drd/scripts/compile-gcc =================================================================== --- trunk/exp-drd/scripts/compile-gcc 2008-06-12 06:04:59 UTC (rev 8224) +++ trunk/exp-drd/scripts/compile-gcc 2008-06-12 13:49:49 UTC (rev 8225) @@ -6,7 +6,7 @@ # are called gmp-devel and mpfr-devel. -GCC_VERSION=4.3.0 +GCC_VERSION=4.3.1 FSF_MIRROR=ftp://ftp.easynet.be/gnu SRCDIR=$HOME/software DOWNLOADS=$SRCDIR/downloads @@ -14,6 +14,7 @@ BUILD=${SRC}-build TAR=gcc-${GCC_VERSION}.tar.bz2 PREFIX=$HOME/gcc-${GCC_VERSION} +export LC_ALL=C export MAKEFLAGS="-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))" if [ ! -e /usr/include/gmp.h ]; then |