From ca5114ce936107104bd300c1625006081cc1d9ac Mon Sep 17 00:00:00 2001 From: Dr!fter Date: Tue, 19 Aug 2014 13:23:06 -0400 Subject: [PATCH] Fix linux and mac buildbot. --- buildbot/bootstrap.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildbot/bootstrap.pl b/buildbot/bootstrap.pl index c06bd44..808e4d0 100644 --- a/buildbot/bootstrap.pl +++ b/buildbot/bootstrap.pl @@ -24,9 +24,9 @@ my ($result); #configure AMBuild if ($^O eq "linux") { - $result = `CC=gcc CXX=gcc python3 ../build/configure.py --enable-optimize`; + $result = `CC=clang CXX=clang python ../build/configure.py --enable-optimize`; } elsif ($^O eq "darwin") { - $result = `CC=clang CXX=clang python3 ../build/configure.py --enable-optimize`; + $result = `CC=clang CXX=clang python ../build/configure.py --enable-optimize`; } else { $result = `C:\\Python31\\Python.exe ..\\build\\configure.py --enable-optimize`; }