mirror of
https://github.com/UberGames/RPG-X2.git
synced 2025-02-08 15:51:49 +00:00
Reverting cross compile ... needs much more work
This commit is contained in:
parent
54f7a556bc
commit
f7ff41879b
2 changed files with 0 additions and 34 deletions
|
@ -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 $*
|
|
@ -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 $*
|
Loading…
Reference in a new issue