New build script, to make MinGW builds that can run on older processors that lack SSE2, SSE, and MMX

This commit is contained in:
Jonathan Campbell
2018-03-06 15:34:33 -08:00
parent 6eb3fe5d54
commit b6eb4ac798

13
build-mingw-lowend Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# prefer to compile against our own copy of SDL 1.x
echo Compiling our internal SDL 1.x
(cd vs2015/sdl && ./build-dosbox.sh) || exit 1
# now compile ourself
echo Compiling DOSBox-X
chmod +x configure
# FIXME: I would like MinGW builds to enable the debugger, eventually
./configure --enable-core-inline --disable-mt32 --prefix=/usr || exit 1
make -j3 || exit 1