aboutsummaryrefslogtreecommitdiff
path: root/PxShared/buildtools/steps/build_all_linux.sh
diff options
context:
space:
mode:
authorMarijn Tamis <[email protected]>2019-04-01 14:21:09 +0200
committerMarijn Tamis <[email protected]>2019-04-01 14:21:09 +0200
commitd243404d4ba88bcf53f7310cc8980b4efe38c19f (patch)
treedcc8ce2904e9f813e03f71f825c4d3c9ec565d91 /PxShared/buildtools/steps/build_all_linux.sh
parentAdd new SetSpheres and SetPlanes api's to bring them in line with setTriangles. (diff)
downloadnvcloth-1.1.6.tar.xz
nvcloth-1.1.6.zip
1.1.6 Release.1.1.6
Diffstat (limited to 'PxShared/buildtools/steps/build_all_linux.sh')
-rw-r--r--PxShared/buildtools/steps/build_all_linux.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/PxShared/buildtools/steps/build_all_linux.sh b/PxShared/buildtools/steps/build_all_linux.sh
deleted file mode 100644
index 167912f..0000000
--- a/PxShared/buildtools/steps/build_all_linux.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash +x
-
-set -e
-
-# get number of CPU cores
-if [ -f /proc/cpuinfo ]; then
- CPUS=`grep processor /proc/cpuinfo | wc -l`
-else
- CPUS=1
-fi
-
-# Stackoverflow suggests jobs count of (CPU cores + 1) as a respctively good number!
-JOBS=`expr $CPUS + 1`
-
-# run make for all configs
-pushd "$(dirname "$0")/../../compiler/linux-debug-clang"
-make -j$JOBS || exit 1
-popd
-
-pushd "$(dirname "$0")/../../compiler/linux-release-clang"
-make -j$JOBS || exit 1
-popd