summaryrefslogtreecommitdiff
path: root/cross-make-mingw64.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cross-make-mingw64.sh')
-rwxr-xr-xcross-make-mingw64.sh27
1 files changed, 21 insertions, 6 deletions
diff --git a/cross-make-mingw64.sh b/cross-make-mingw64.sh
index 97f68943..d480c266 100755
--- a/cross-make-mingw64.sh
+++ b/cross-make-mingw64.sh
@@ -1,13 +1,28 @@
#!/bin/sh
-if [ !$CC ]
-then
- export CC=amd64-mingw32msvc-gcc
+CMD_PREFIX="amd64-mingw32msvc x86_64-w64-mingw32";
+
+if [ "X$CC" = "X" ]; then
+ for check in $CMD_PREFIX; do
+ full_check="${check}-gcc"
+ if [ ! $(which "$full_check") = "" ]; then
+ export CC="$full_check"
+ fi
+ done
+fi
+
+if [ "X$WINDRES" = "X" ]; then
+ for check in $CMD_PREFIX; do
+ full_check="${check}-windres"
+ if [ ! $(which "$full_check") = "" ]; then
+ export WINDRES="$full_check"
+ fi
+ done
fi
-if [ !$WINDRES ]
-then
- export WINDRES=amd64-mingw32msvc-windres
+if [ "X$WINDRES" = "X" -o "X$CC" = "X" ]; then
+ echo "Error: Must define or find WINDRES and CC"
+ exit 1
fi
export PLATFORM=mingw32