- added instructions how to update the online documentation
[bochs-mirror.git] / .conf.macos
blob0d1a33bb319d180393b856bd1c52585db5542568
1 #!/bin/sh
3 # This script will run configure for a Macintosh/CodeWarrior Pro
4 # environment. I actually run this on my Linux machine, but
5 # the generated files are for a Mac.
7 set echo
9 # These really just make ./configure happy on your Unix machine.
10 # They are not the options used on your Mac.
11 CC="gcc"
12 CFLAGS=""
13 CXX="$CC"
14 CXXFLAGS="$CFLAGS"
16 export CC
17 export CXX
18 export CFLAGS
19 export CXXFLAGS
21 ./configure --target=ppc-macos \
22 --enable-sb16 \
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 \
31 --enable-plugins \
32 --with-macos \
33 ${CONFIGURE_ARGS}
35 unset echo