mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 07:11:36 +00:00
autobuild: try to fix extra options build and mingw builds
This commit is contained in:
parent
4e5b84fe8f
commit
361c71f8af
1 changed files with 7 additions and 2 deletions
|
@ -6,10 +6,15 @@ failed=0;
|
||||||
(make) || failed=1;
|
(make) || failed=1;
|
||||||
|
|
||||||
# Test additional options
|
# Test additional options
|
||||||
|
make clean
|
||||||
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
||||||
|
|
||||||
# Test mingw
|
# Test mingw (gcc)
|
||||||
(exec ./cross-make-mingw.sh) || failed=1;
|
if [ "$CC" = "gcc" ]; then
|
||||||
|
# clear CC so script will set it.
|
||||||
|
export CC=
|
||||||
|
(exec ./cross-make-mingw.sh) || failed=1;
|
||||||
|
fi
|
||||||
|
|
||||||
if [ $failed -eq 1 ]; then
|
if [ $failed -eq 1 ]; then
|
||||||
echo "Build failure.";
|
echo "Build failure.";
|
||||||
|
|
Loading…
Reference in a new issue