Fixed compilation error
[bochs-mirror.git] / .conf.win32-cygwin
blob6bbfd0e475001216ebf2be9bd6fb196c53b2f7d8
1 #!/bin/sh
3 # These are the steps I typically use to configure and compile Bochs
4 # on a Win32 system with cygwin (v.20.1)
7 CC="gcc"
8 CXX="g++"
9 CFLAGS="-O3 -Wall -Wno-format -march=pentium"
10 CXXFLAGS="$CFLAGS"
12 export CC
13 export CXX
14 export CFLAGS
15 export CXXFLAGS
17 ./configure --enable-sb16 \
18 --enable-ne2000 \
19 --enable-all-optimizations \
20 --enable-cpu-level=6 \
21 --enable-x86-64 \
22 --enable-sse=2 \
23 --enable-pci \
24 --enable-acpi \
25 --enable-clgd54xx \
26 --enable-usb \
27 --enable-show-ips \
28 --with-win32 --with-rfb --with-nogui