aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2023-02-28 08:34:08 -0600
committerBrent Cook <busterb@gmail.com>2023-02-28 08:41:51 -0600
commit47aeda0fb235043acf0b010315d175e67fa4ed00 (patch)
treed59b59ed1ad0dadd7580afd99939ec9d8c41f09f /scripts
parentcfbdf67f5960198363f56b06f6a4f88aa8654d10 (diff)
downloadportable-47aeda0fb235043acf0b010315d175e67fa4ed00.tar.gz
portable-47aeda0fb235043acf0b010315d175e67fa4ed00.tar.bz2
portable-47aeda0fb235043acf0b010315d175e67fa4ed00.zip
make it simpler to test on a non-Linux system
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/test8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/test b/scripts/test
index 0eb2c06..c7200dc 100755
--- a/scripts/test
+++ b/scripts/test
@@ -1,10 +1,10 @@
1#!/bin/sh 1#!/bin/sh
2set -e 2set -e
3set -x
3 4
4unset CC 5unset CC
5 6
6if type apt-get >/dev/null 7if type apt-get >/dev/null 2>&1; then
7then
8 sudo apt-get update 8 sudo apt-get update
9 sudo apt-get install -y cmake ninja-build 9 sudo apt-get install -y cmake ninja-build
10fi 10fi
@@ -52,7 +52,9 @@ elif [ "x$ARCH" = "xmingw32" -o "x$ARCH" = "xmingw64" ]; then
52 CPU=x86_64 52 CPU=x86_64
53 fi 53 fi
54 54
55 sudo apt-get install -y mingw-w64 55 if ! type i686-w64-mingw32-gcc > /dev/null; then
56 sudo apt-get install -y mingw-w64
57 fi
56 58
57 ./configure --host=$CPU-w64-mingw32 59 ./configure --host=$CPU-w64-mingw32
58 make -j 4 60 make -j 4