Bochs/bochs/.conf.macosx
Bryce Denney d899d8c7c2 - remove export lines for CC and CXX. I don't know if they were hurting
anything, but they certainly weren't helping.
2002-12-07 06:00:52 +00:00

17 lines
223 B
Bash

#!/bin/sh
# this sets up the compile for MacOS X
set echo
CFLAGS="-pipe -O2"
CXXFLAGS="$CFLAGS"
export CFLAGS
export CXXFLAGS
./configure --enable-cdrom \
--enable-vbe \
--enable-all-optimizations
unset echo