#!/bin/sh # # These are the steps I typically use to configure and compile Bochs # on a Win32 system with cygwin (v.20.1) # CC="gcc" CXX="g++" CFLAGS="-O3 -march=pentium" CXXFLAGS="$CFLAGS" export CC export CXX export CFLAGS export CXXFLAGS ./configure --enable-cdrom \ --enable-sb16 \ --enable-ne2000 \ --enable-vbe \ --enable-all-optimizations \ --enable-cpu-level=6 \ --enable-sse=1 \ --enable-pci \ --enable-clgd54xx \ --enable-usb \ --with-win32 --with-rfb --with-nogui