From 766875db5ff3728c2dba68516dae2796b4dcc54e Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Fri, 24 Jun 2011 17:13:44 -0500 Subject: [PATCH] Using gcc 4.4 from Debian 6 for Linux builds now. --- support/buildbot/bootstrap.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/buildbot/bootstrap.pl b/support/buildbot/bootstrap.pl index 8442ac1..aa7e7b5 100755 --- a/support/buildbot/bootstrap.pl +++ b/support/buildbot/bootstrap.pl @@ -50,7 +50,7 @@ if ($reconf) { $result = `CC=$ARGV[0] CXX=$ARGV[0] python3.1 ../build/configure.py --enable-optimize`; } else { if ($^O eq "linux") { - $result = `CC=gcc-4.1 CXX=gcc-4.1 python3.1 ../build/configure.py --enable-optimize`; + $result = `CC=gcc-4.4 CXX=gcc-4.4 python3.1 ../build/configure.py --enable-optimize`; } elsif ($^O eq "darwin") { $result = `CC=gcc-4.2 CXX=gcc-4.2 python3.1 ../build/configure.py --enable-optimize`; } else {