diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-22 17:48:23 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-22 17:48:23 (GMT) |
commit | 8bcb17ddfba83e228b66dad812317b291e8c8fc5 (patch) | |
tree | d3436774faf81b4d2f35f200e454d070263e9e65 /scripts/macosx-build-dependencies.sh | |
parent | d0bd89e6a0e87a7b9bf454404328af735b4c01d7 (diff) |
Build 32-bit binaries only in deployment mode
Diffstat (limited to 'scripts/macosx-build-dependencies.sh')
-rwxr-xr-x | scripts/macosx-build-dependencies.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index 2d0aaa4..d1b1a63 100755 --- a/scripts/macosx-build-dependencies.sh +++ b/scripts/macosx-build-dependencies.sh @@ -28,6 +28,7 @@ OPTION_32BIT=true OPTION_LLVM=false OPTION_CLANG=false OPTION_GCC=false +OPTION_DEPLOY=false DETECTED_LION=false DETECTED_MOUNTAIN_LION=false export QMAKESPEC=macx-g++ @@ -423,6 +424,12 @@ else MAC_OSX_VERSION_MIN=10.5 fi +if $OPTION_DEPLOY; then + echo "Building deployment version of libraries" +else + OPTION_32BIT=false +fi + if $OPTION_32BIT; then echo "Building combined 32/64-bit binaries" else |