Bug 674647 - Add a file for setting the common settings used when building a non universal binary for 10.5. r=armenzg,ted

This commit is contained in:
Rafael Ávila de Espíndola 2011-07-27 17:32:00 -04:00
parent f7a8c08bb9
commit ab80d0b5b8

View File

@ -0,0 +1,13 @@
if test -z "$CC" ; then
CC=gcc-4.2
fi
if test -z "$CXX" ; then
CXX=g++-4.2
fi
# We do 32 bit builds for leopard
CC="$CC -arch i386"
CXX="$CXX -arch i386"
ac_add_options --with-macos-sdk=/Developer/SDKs/MacOSX10.5.sdk