bc1b1d4ed5
- Using bochsrc option "load32bitOSImage" now causes a warning. It is not maintained yet, not documented and we don't whether it is used or not. I guess it was designed to boot a real 32-bit guest OS when the Bochs BIOS wasn't able to do it. - Added config option --enable-busmouse to all shortcut scripts. We have two usable models present now (tested with Win95).
36 lines
927 B
Bash
Executable File
36 lines
927 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# These are the steps I typically use to configure and compile Bochs
|
|
# on a Win32 system with Cygwin (v1.7.28) or MinGW/MSYS.
|
|
#
|
|
|
|
CC="gcc"
|
|
CXX="g++"
|
|
#CFLAGS="-O3 -Wall -Wno-format -mno-cygwin" # for GCC versions < 4.7
|
|
CFLAGS="-O3 -Wall -Wno-format -mno-ms-bitfields"
|
|
CXXFLAGS="$CFLAGS"
|
|
|
|
export CC
|
|
export CXX
|
|
export CFLAGS
|
|
export CXXFLAGS
|
|
|
|
./configure --enable-sb16 \
|
|
--enable-ne2000 \
|
|
--enable-all-optimizations \
|
|
--enable-cpu-level=6 \
|
|
--enable-x86-64 \
|
|
--enable-vmx=2 \
|
|
--enable-pci \
|
|
--enable-clgd54xx \
|
|
--enable-voodoo \
|
|
--enable-usb \
|
|
--enable-usb-ohci \
|
|
--enable-usb-ehci \
|
|
--enable-usb-xhci \
|
|
--enable-busmouse \
|
|
--enable-es1370 \
|
|
--enable-e1000 \
|
|
--enable-show-ips \
|
|
--with-win32 --with-rfb --with-nogui
|