Bochs/bochs/.conf.beos
2002-09-23 06:14:01 +00:00

22 lines
353 B
Bash
Executable File

#!/bin/sh
#
# These are the steps I typically use to configure and compile Bochs,
# on an x86 BeOS machine, using gcc
#
CC=gcc
CXX=$CC
CFLAGS="-Wall -O2 -mpentium -fomit-frame-pointer -pipe"
CXXFLAGS=$CFLAGS
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure --with-beos \
--enable-cdrom \
--enable-ne2000 \
--enable-sb16=dummy