quakeforge/tools/cross/mingw64/cross-configure.sh
Bill Currie f68ae3ad5d Add support for 64bit windows via mxe (mingw).
Note that this support relies on the -multi branch (separate git repo on
github) util it gets merged.
2013-01-22 21:02:50 +09:00

19 lines
470 B
Bash
Executable file

#!/bin/sh -x
set -e
mkdir -p native x86_64-w64-mingw32
cd native
../../configure \
--disable-shared \
--without-clients \
--without-servers \
--with-tools=qfcc,pak
cd ../x86_64-w64-mingw32
export MINGW=/opt/mxe
export MINGW_USR=$MINGW/usr/x86_64-w64-mingw32
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
export PATH=$MINGW/usr/bin:$PATH
../../configure \
--host=x86_64-w64-mingw32 \
--disable-shared \
$*