beff63eb32
ftp.bochs.com
19 lines
286 B
Bash
Executable File
19 lines
286 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 --with-beos
|