Bochs/bochs/.conf.macosx

19 lines
244 B
Plaintext
Raw Normal View History

2001-09-27 07:56:36 +04:00
#!/bin/sh
2001-12-11 16:42:23 +03:00
# this sets up the compile for MacOS X
2001-09-27 07:56:36 +04:00
set echo
CFLAGS="-pipe -O2"
2001-09-27 07:56:36 +04:00
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure --enable-cdrom \
--enable-vbe \
--enable-all-optimizations
2001-09-27 07:56:36 +04:00
unset echo