- tweak parameters, at request of Bernd Korz

This commit is contained in:
Bryce Denney 2002-10-08 07:09:58 +00:00
parent c74b8c55fc
commit 2fe9b943b6

View File

@ -1,13 +1,13 @@
#!/bin/sh #!/bin/sh
# #
# These are the steps I typically use to configure and compile Bochs, # These options are suggested by Bernd Korz, who maintains the BeOS
# on an x86 BeOS machine, using gcc # port. He says that SDL works better than the native BeOS gui.
# #
CC=gcc CC=gcc
CXX=$CC CXX=$CC
CFLAGS="-Wall -O2 -mpentium -fomit-frame-pointer -pipe" CFLAGS="-Wall -O9 -mpentium -fomit-frame-pointer -pipe"
CXXFLAGS=$CFLAGS CXXFLAGS=$CFLAGS
export CC export CC
@ -15,8 +15,8 @@ export CXX
export CFLAGS export CFLAGS
export CXXFLAGS export CXXFLAGS
./configure --with-beos \ ./configure --with-sdl \
--enable-cdrom \ --enable-cdrom \
--enable-ne2000 \
--enable-sb16=dummy \ --enable-sb16=dummy \
--enable-guest2host-tlb --enable-dc2300-vlb-ide \
--enable-all-optimizations