Bochs/bochs/.conf.beos-x86-R4

19 lines
274 B
Bash
Executable File

#!/bin/sh
#
# These are the steps I typically use to configure and compile Bochs,
# on an x86 BeOS R4 machine, using gcc
#
CC=gcc
CXX=$CC
CFLAGS="-Wall -O2 -m486 -fomit-frame-pointer -pipe"
CXXFLAGS=$CFLAGS
export CC
export CXX
export CFLAGS
export CXXFLAGS
./configure