mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-09 03:41:10 +08:00
changelog, and use configure flags
This commit is contained in:
parent
67f5be36a7
commit
5102cb31e0
@ -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).
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user