aboutsummaryrefslogtreecommitdiff
path: root/PxShared/buildtools/steps/build_all_mac.sh
diff options
context:
space:
mode:
Diffstat (limited to 'PxShared/buildtools/steps/build_all_mac.sh')
-rw-r--r--PxShared/buildtools/steps/build_all_mac.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/PxShared/buildtools/steps/build_all_mac.sh b/PxShared/buildtools/steps/build_all_mac.sh
deleted file mode 100644
index 57437a0..0000000
--- a/PxShared/buildtools/steps/build_all_mac.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash +x
-
-# exit script on first error
-set -e
-
-# get number of CPU cores
-CPUS=`sysctl -n hw.ncpu`
-
-# Stackoverflow suggests jobs count of (CPU cores + 1) as a respctively good number!
-JOBS=`expr $CPUS + 1`
-
-build_config()
-{
- CONFIG=$1
- echo "*** Building: $CONFIG ***"
- pushd "$(dirname "$0")/../../compiler/$CONFIG"
- make -j$JOBS install
- popd
-}
-
-# run make for all configs
-build_config "osx32-checked"
-build_config "osx32-debug"
-build_config "osx32-profile"
-build_config "osx32-release"
-build_config "osx64-checked"
-build_config "osx64-debug"
-build_config "osx64-profile"
-build_config "osx64-release"