- added instructions how to update the online documentation
[bochs-mirror.git] / .conf.sparc
bloba3f064702c550deb0cb64afb1aaec2803ac6388a
1 #!/bin/sh
4 # These are the steps I typically use to configure and compile Bochs.
7 # superSPARC w/ Solaris 2.x
8 set echo
9 CC="gcc"
10 CXX="g++"
11 #CFLAGS="-Wall -O2 -mv8 -msupersparc -mno-epilogue"
12 CFLAGS="-Wall -O2 -mv8 -msupersparc"
13 #CFLAGS="-Wall -O2 -g"
14 CXXFLAGS="$CFLAGS"
17 export CC
18 export CXX
19 export CFLAGS
20 export CXXFLAGS
22 ./configure --enable-ne2000 \
23 --enable-all-optimizations \
24 --enable-cpu-level=6 \
25 --enable-x86-64 \
26 --enable-sse=2 \
27 --enable-pci \
28 --enable-acpi \
29 --enable-clgd54xx \
30 --enable-usb
32 unset echo