You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.1 KiB
20 lines
1.1 KiB
#!/bin/bash |
|
|
|
. scripts/lib.sh |
|
|
|
# Build engine |
|
cd $TRAVIS_BUILD_DIR |
|
export CC="ccache i686-w64-mingw32-gcc" |
|
export CXX="ccache i686-w64-mingw32-g++" |
|
export CFLAGS="-static-libgcc -no-pthread -msse2 -msse -mmmx -march=pentium4m -mtune=pentium4m -Ofast -ffast-math -funsafe-math-optimizations -funsafe-loop-optimizations -g -gdwarf-2 -fomit-frame-pointer" # add sse2 to workaround mingw multiple definition of MemoryBarrier bug |
|
export CXXFLAGS="-static-libgcc -static-libstdc++ -no-pthread -msse2" |
|
export LDFLAGS="-static-libgcc -static-libstdc++ -no-pthread -Wl,--allow-multiple-definition" # workaround some other mingw bugs |
|
export WINRC="i686-w64-mingw32-windres" |
|
rm -rf build # clean build directory |
|
./waf configure -s "SDL2_mingw/i686-w64-mingw32/" --build-type=none --prefix="." --win-style-install -v || die # can't compile VGUI support on MinGW, due to differnet C++ ABI |
|
./waf build -v || die |
|
cp $TRAVIS_BUILD_DIR/SDL2_mingw/i686-w64-mingw32//bin/SDL2.dll . # Install SDL2 |
|
cp vgui_support_bin/vgui_support.dll . |
|
./waf install || die |
|
|
|
7z a -t7z $TRAVIS_BUILD_DIR/xash3d-mingw.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on *.dll *.exe
|
|
|