22 lines
353 B
Bash
Executable File
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
|