changelog, and use configure flags

This commit is contained in:
Jonathan Campbell 2019-03-17 16:10:03 -07:00
parent 67f5be36a7
commit 5102cb31e0
3 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,8 @@
0.82.17 (next)
- Updated build-debug scripts to accept "32" on the command
line as a sign to compile 32-bit (i686) on a 64-bit (x86_64)
system. You will need a multilib-capable GCC and 32-bit
libraries installed on your system for this to work.
- SDL2 OpenGL fixed color order issue
- OpenGL is now supported in SDL2 builds.
- Changed MPU-401 reset duration (DOSBox SVN).

View File

@ -5,6 +5,7 @@ if [ "$1" == "32" ]; then
export CC=`which gcc`" -m32"
export CXX=`which g++`" -m32"
shift
opt="--host=i686-pc-linux-gnu --target=i686-pc-linux-gnu"
fi
# Jonathan C dev hack: refer to LNKDOS16 in /usr/src/doslib
@ -36,6 +37,6 @@ echo Compiling our internal SDLnet 1.x
# now compile ourself
echo Compiling DOSBox-X
chmod +x configure
./configure --enable-core-inline --enable-debug=heavy --enable-avcodec --prefix=/usr "$@" || exit 1
./configure --enable-core-inline --enable-debug=heavy --enable-avcodec --prefix=/usr "$@" $opt || exit 1
make -j3 || exit 1

View File

@ -5,6 +5,7 @@ if [ "$1" == "32" ]; then
export CC=`which gcc`" -m32"
export CXX=`which g++`" -m32"
shift
opt="--host=i686-pc-linux-gnu --target=i686-pc-linux-gnu"
fi
# I'm sick and tired of all the churn the three versions of autoconf
@ -26,6 +27,6 @@ echo Compiling our internal SDLnet 1.x
# now compile ourself
echo Compiling DOSBox-X
chmod +x configure
./configure --enable-core-inline --enable-debug=heavy --prefix=/usr "$@" || exit 1
./configure --enable-core-inline --enable-debug=heavy --prefix=/usr "$@" $opt || exit 1
make -j3 || exit 1