diff options
author | Morten Sorvig <msorvig@trolltech.com> | 2009-08-04 06:15:21 (GMT) |
---|---|---|
committer | Morten Sorvig <msorvig@trolltech.com> | 2009-08-04 07:41:31 (GMT) |
commit | 4f7170d9d731234c65008b690a95a0e86d397db5 (patch) | |
tree | d3c97b0fe4b89dfa30eb94dae5a95a98f61c17b0 | |
parent | 5079cc13e0c8b644512eec4b770fe0763451e2a7 (diff) | |
download | Qt-4f7170d9d731234c65008b690a95a0e86d397db5.zip Qt-4f7170d9d731234c65008b690a95a0e86d397db5.tar.gz Qt-4f7170d9d731234c65008b690a95a0e86d397db5.tar.bz2 |
Make Cocoa builds 64-bit by default on snow leopard.
-rwxr-xr-x | configure | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -5707,17 +5707,23 @@ if [ "$CFG_MAC_DWARF2" = "yes" ]; then QT_CONFIG="$QT_CONFIG dwarf2" fi -# Set the default arch. Select 32-bit/carbon if nothing else has -# been specified on the configure line. +# Set the default arch. +# Carbon builds: 32 bit x86/ppc. +# For "-cocoa" builds on snow leopard : compiler default (64-bit). +# For "-cocoa" builds on leopard : compiler default (32-bit). if [ "$PLATFORM_MAC" = "yes" ] && [ "$CFG_MAC_ARCHS" == "" ]; then source "$mactests/defaultarch.test" "$TEST_COMPILER" "$OPT_VERBOSE" "$mactests" - if [ "$QT_MAC_DEFAULT_ARCH" == "x86_64" ]; then - CFG_MAC_ARCHS=" x86" - elif [ "$QT_MAC_DEFAULT_ARCH" == "ppc64" ]; then - CFG_MAC_ARCHS=" ppc" - else - CFG_MAC_ARCHS=" $QT_MAC_DEFAULT_ARCH" + if [ "$CFG_MAC_COCOA" != "yes" ]; then + if [ "$QT_MAC_DEFAULT_ARCH" == "x86_64" ]; then + CFG_MAC_ARCHS=" x86" + elif [ "$QT_MAC_DEFAULT_ARCH" == "ppc64" ]; then + CFG_MAC_ARCHS=" ppc" + else + CFG_MAC_ARCHS=" $QT_MAC_DEFAULT_ARCH" + fi + else + CFG_MAC_ARCHS=" $QT_MAC_DEFAULT_ARCH" fi [ "$OPT_VERBOSE" == "yes" ] && echo "Setting Mac architechture to$CFG_MAC_ARCHS." |