Mac build fix.

This commit is contained in:
Asher Baker 2012-05-31 11:49:54 +01:00
parent 8e31675395
commit 4397bc57ca

View File

@ -43,9 +43,9 @@ if ($^O eq "linux") {
#configure AMBuild #configure AMBuild
if ($^O eq "linux") { if ($^O eq "linux") {
$result = `CC=gcc-4.1 CXX=gcc-4.1 python3 ../build/configure.py --enable-optimize`; $result = `CC=gcc CXX=gcc python3 ../build/configure.py --enable-optimize`;
} elsif ($^O eq "darwin") { } elsif ($^O eq "darwin") {
$result = `CC=clang CXX=gcc-4.2 python3 ../build/configure.py --enable-optimize`; $result = `CC=clang CXX=clang python3 ../build/configure.py --enable-optimize`;
} else { } else {
$result = `C:\\Python31\\Python.exe ..\\build\\configure.py --enable-optimize`; $result = `C:\\Python31\\Python.exe ..\\build\\configure.py --enable-optimize`;
} }