Reverting cross compile ... needs much more work

This commit is contained in:
Walter Julius Hennecke 2012-01-24 23:40:39 +01:00
parent 54f7a556bc
commit f7ff41879b
2 changed files with 0 additions and 34 deletions

View file

@ -1,17 +0,0 @@
#!/bin/sh
CMD_PREFIX="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
export CC="$full_check"
fi
done
fi
export PLATFORM=mingw32
export ARCH=x86
exec make $*

View file

@ -1,17 +0,0 @@
#!/bin/sh
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
export PLATFORM=mingw32
export ARCH=x64
exec make $*