Bochs/bochs/.conf.macosx
Bryce Denney 7313a837d4 - let configure script find the stinkin compiler. Br'fin says that
C++ links were failing because this script set CXX=cc.
2002-10-16 16:35:19 +00:00

17 lines
174 B
Bash

#!/bin/sh
# this sets up the compile for MacOS X
set echo
CFLAGS="-pipe -g"
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure
unset echo