Add mingw64 crossbuild script, patch by Zack Middleton

This commit is contained in:
Thilo Schulz 2011-06-16 21:49:33 +00:00
parent d8b7532fc1
commit b3745b7206

10
cross-make-mingw64.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
export CC=amd64-mingw32msvc-gcc
export WINDRES=amd64-mingw32msvc-windres
export PLATFORM=mingw32
if [ !$ARCH ]
then
export ARCH=x86_64
fi
exec make $*