quakeforge/tools/cross/mingw64/cross-configure.sh
Bill Currie 91febd50c6 [win] Fix some bitrot for building
Needed an option to disable LTO, and a couple of errors that crept in
with preprocessor and vulkan improvements.
2024-09-24 19:49:41 +09:00

24 lines
622 B
Bash
Executable file

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