File: .conf.win32-cygwin

package info (click to toggle)
bochs 2.3-2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 14,116 kB
  • ctags: 16,927
  • sloc: cpp: 130,524; ansic: 18,822; sh: 7,922; makefile: 3,836; yacc: 1,056; asm: 463; perl: 381; lex: 280; csh: 3
file content (28 lines) | stat: -rwxr-xr-x 652 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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 -Wall -Wno-format -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 \
            --enable-save-restore \
            --with-win32 --with-rfb --with-nogui