build_cross_win[32|64]-sdl2.sh: new scripts for me to cross-build on my linux.

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1161 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2015-02-04 10:00:13 +00:00
parent 90f47a907e
commit f14e2bc01e
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#!/bin/sh
# Change this script to meet your needs and/or environment.
TARGET=i686-w64-mingw32
PREFIX=/opt/cross_win32
PATH="$PREFIX/bin:$PATH"
export PATH
MAKE_CMD=make
SDL_CONFIG=/opt/sdl2-w32/bin/sdl2-config
CC="$TARGET-gcc"
AS="$TARGET-as"
RANLIB="$TARGET-ranlib"
AR="$TARGET-ar"
WINDRES="$TARGET-windres"
STRIP="$TARGET-strip"
export PATH CC AS AR RANLIB WINDRES STRIP
exec $MAKE_CMD USE_SDL2=1 WINSOCK2=1 SDL_CONFIG=$SDL_CONFIG CC=$CC AS=$AS RANLIB=$RANLIB AR=$AR WINDRES=$WINDRES STRIP=$STRIP -f Makefile.w32 $*

View File

@ -0,0 +1,22 @@
#!/bin/sh
# Change this script to meet your needs and/or environment.
TARGET=x86_64-w64-mingw32
PREFIX=/opt/cross_win64
PATH="$PREFIX/bin:$PATH"
export PATH
MAKE_CMD=make
SDL_CONFIG=/opt/sdl2-w64/bin/sdl2-config
CC="$TARGET-gcc"
AS="$TARGET-as"
RANLIB="$TARGET-ranlib"
AR="$TARGET-ar"
WINDRES="$TARGET-windres"
STRIP="$TARGET-strip"
export PATH CC AS AR RANLIB WINDRES STRIP
exec $MAKE_CMD USE_SDL2=1 SDL_CONFIG=$SDL_CONFIG CC=$CC AS=$AS RANLIB=$RANLIB AR=$AR WINDRES=$WINDRES STRIP=$STRIP -f Makefile.w64 $*