beff63eb32
ftp.bochs.com
19 lines
238 B
Bash
Executable File
19 lines
238 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# These are the steps I typically use to configure and compile Bochs,
|
|
# on an x86 BeOS machine
|
|
#
|
|
|
|
CC=mwcc
|
|
CXX=$CC
|
|
CFLAGS="-w8 -O2"
|
|
CXXFLAGS=$CFLAGS
|
|
|
|
export CC
|
|
export CXX
|
|
export CFLAGS
|
|
export CXXFLAGS
|
|
|
|
./configure --with-beos
|