mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
6ca3fc377b
the linker flags for x86_64 builds. adjusted accordingly. - build_cross_osx.sh, build_cross_win32.sh, build_cross_win64.sh: added the cross-compile scripts I have been using. - Makefiles,other: added LDFLAGS variables for future use. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@704 af15c1b1-3010-417e-b628-4374ebc0bcbd
23 lines
528 B
Bash
Executable file
23 lines
528 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Change this script to meet your needs and/or environment.
|
|
|
|
#TARGET=x86_64-pc-mingw32
|
|
TARGET=x86_64-w64-mingw32
|
|
PREFIX=/opt/cross_win64
|
|
|
|
PATH="$PREFIX/bin:$PATH"
|
|
export PATH
|
|
|
|
MAKE_CMD=make
|
|
|
|
SDL_CONFIG=/opt/sdl_w64/bin/sdl-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 SDL_CONFIG=$SDL_CONFIG CC=$CC AS=$AS RANLIB=$RANLIB AR=$AR WINDRES=$WINDRES STRIP=$STRIP -f Makefile.w64 $*
|