IOQ3 commit 2290

This commit is contained in:
Richard Allen 2012-10-04 15:25:46 +00:00
parent 38b6ac94c8
commit 9bc8fafda9
2 changed files with 16 additions and 8 deletions

View file

@ -1,11 +1,14 @@
#!/bin/sh
# Note: This works in Linux and cygwin
CMD_PREFIX="i686-pc-mingw32 i586-mingw32msvc i686-w64-mingw32";
if [ "X$CC" = "X" ]; then
for check in $CMD_PREFIX; do
full_check="${check}-gcc"
if [ ! $(which "$full_check") = "" ]; then
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; then
export CC="$full_check"
fi
done
@ -14,7 +17,8 @@ fi
if [ "X$WINDRES" = "X" ]; then
for check in $CMD_PREFIX; do
full_check="${check}-windres"
if [ ! $(which "$full_check") = "" ]; then
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; then
export WINDRES="$full_check"
fi
done

View file

@ -1,22 +1,26 @@
#!/bin/sh
# Note: This works in Linux and cygwin
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
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; 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
which "$full_check" > /dev/null 2>&1
if [ "$?" = "0" ]; then
export WINDRES="$full_check"
fi
done
fi