From b1098d62871729e2ed993b5d464679b9830f39c5 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Fri, 24 Jun 2011 17:29:05 -0500 Subject: [PATCH] Using gcc 4.4 from Debian 6 for Linux builds now. --- pushbuild.txt | 1 + tools/buildbot/bootstrap.pl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pushbuild.txt b/pushbuild.txt index 707a5778..d6262800 100644 --- a/pushbuild.txt +++ b/pushbuild.txt @@ -48,3 +48,4 @@ The Patty Winters show this morning was about how terrible sawce is, same as yes IT'S CLOBBERIN' TIME vc2005 supremecy clobbermonkey +that thing diff --git a/tools/buildbot/bootstrap.pl b/tools/buildbot/bootstrap.pl index f86b9e82..63f2b655 100755 --- a/tools/buildbot/bootstrap.pl +++ b/tools/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 {