2001-04-10 05:04:59 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This script will run configure for a Macintosh/CodeWarrior Pro
|
|
|
|
# environment. I actually run this on my Linux machine, but
|
|
|
|
# the generated files are for a Mac.
|
|
|
|
|
|
|
|
set echo
|
|
|
|
|
|
|
|
# These really just make ./configure happy on your Unix machine.
|
|
|
|
# They are not the options used on your Mac.
|
2001-10-08 01:23:00 +04:00
|
|
|
CC="gcc"
|
2001-04-10 05:04:59 +04:00
|
|
|
CFLAGS=""
|
|
|
|
CXX="$CC"
|
|
|
|
CXXFLAGS="$CFLAGS"
|
|
|
|
|
|
|
|
export CC
|
|
|
|
export CXX
|
|
|
|
export CFLAGS
|
|
|
|
export CXXFLAGS
|
|
|
|
|
2002-12-12 16:27:47 +03:00
|
|
|
./configure --target=ppc-macos \
|
2005-03-22 19:44:24 +03:00
|
|
|
--enable-sb16 \
|
2005-03-12 19:34:49 +03:00
|
|
|
--enable-all-optimizations \
|
|
|
|
--enable-cpu-level=6 \
|
2007-09-10 19:21:05 +04:00
|
|
|
--enable-x86-64 \
|
2005-03-12 19:34:49 +03:00
|
|
|
--enable-pci \
|
|
|
|
--enable-clgd54xx \
|
2005-12-26 19:47:51 +03:00
|
|
|
--enable-usb \
|
2005-03-12 19:34:49 +03:00
|
|
|
--enable-plugins \
|
2005-03-22 19:44:24 +03:00
|
|
|
--with-macos \
|
|
|
|
${CONFIGURE_ARGS}
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
unset echo
|