summaryrefslogtreecommitdiffstats
path: root/make/test/build.matrix.darwin
diff options
context:
space:
mode:
Diffstat (limited to 'make/test/build.matrix.darwin')
-rwxr-xr-xmake/test/build.matrix.darwin59
1 files changed, 0 insertions, 59 deletions
diff --git a/make/test/build.matrix.darwin b/make/test/build.matrix.darwin
deleted file mode 100755
index 7620707b5..000000000
--- a/make/test/build.matrix.darwin
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/bash
-#
-
-## This script is used to launch a wide variety of builds for darwin.
-## It is unsupported and is meant for use only with build-system testing.
-
-if [ -z "$1" ]; then
- echo "usage: $0 BUILDPREFIX"
- exit 1
-fi
-
-set -e
-buildprefix=$1
-
-term_make() {
- eval $1="make"
- eval $2="'--disable-xcode'"
-}
-
-term_xcode() {
- eval $1="make"
- eval $2=""
-}
-
-launch_make() {
- eval $1="launch"
- eval $2="'--launch --launch-jobs=0 --launch-quiet --disable-xcode'"
-}
-
-launch_xcode() {
- eval $1="launch"
- eval $2="'--launch --launch-jobs=0 --launch-quiet'"
-}
-
-for debug in none max; do
-for arch in i386 ppc ppc64 x86_64; do
- for method in launch_make launch_xcode term_make term_xcode; do
- dir=$buildprefix.$arch.$debug.$method
- if [ -d $dir ]; then
- echo "skipping $dir"
- continue
- fi
-
- $method mode args
-
- cmd="./configure --arch=$arch --debug=$debug --build=$dir $args"
- echo $cmd | awk '{ \
- trail = ""; \
- for( i = 4; i <= NF; i++ ) \
- trail = trail " " $i; \
- printf("%-11s %-13s %-30s%s\n", $1, $2, $3, trail) }'
-
- $cmd
- if [ "$mode" = "make" ]; then
- (set -x; cd $dir && make -j8 >& log/build.txt)
- fi
- done
-done
-done