Bochs/bochs/.conf.linux
Bryce Denney b601437f2d - remove --enable-dc2300-vlb-ide from all .conf files at Volker's suggestion.
Modified Files:
  .conf.beos .conf.everything .conf.linux .conf.macosx
  .conf.win32-cygwin .conf.win32-vcpp
2002-11-19 20:48:07 +00:00

58 lines
1.5 KiB
Bash
Executable File

#!/bin/sh
#
# .conf.linux
#
which_config=normal
#which_config=plugins
CC="gcc"
CXX="c++"
CFLAGS="-Wall -O2 -fomit-frame-pointer -pipe" # for speed
#CFLAGS="-Wall -g -pipe" # for development
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
case $which_config in
normal)
#######################################################################
# configuration 1 for release binary RPMs
# Include a few standard options, speed optimizations, X11 only.
#######################################################################
./configure --enable-cdrom \
--enable-sb16=linux \
--enable-ne2000 \
--enable-vbe \
--enable-all-optimizations \
${CONFIGURE_ARGS}
;;
plugins)
#######################################################################
# configuration 2 for release binary RPMs
# Include lots of extra stuff
# plugins, every possible gui.
#######################################################################
./configure --enable-cdrom \
--enable-sb16=linux \
--enable-ne2000 \
--enable-vbe \
--enable-all-optimizations \
${CONFIGURE_ARGS} \
--enable-plugins \
--enable-pci \
--enable-port-e9-hack \
--enable-mmx \
--enable-sse=2 \
--with-all-libs
;;
esac