2013-07-21 23:15:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
|
|
|
|
# Let's make the user give us a target build system
|
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
echo "Usage: $0 target_architecture"
|
|
|
|
echo "Example: $0 x86"
|
|
|
|
echo "other valid options are x86_64 or ppc"
|
|
|
|
echo
|
|
|
|
echo "If you don't know or care about architectures please consider using make-macosx-ub.sh instead of this script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$1" == "x86" ]; then
|
|
|
|
BUILDARCH=x86
|
|
|
|
elif [ "$1" == "x86_64" ]; then
|
|
|
|
BUILDARCH=x86_64
|
|
|
|
elif [ "$1" == "ppc" ]; then
|
|
|
|
BUILDARCH=ppc
|
|
|
|
else
|
|
|
|
echo "Invalid architecture: $1"
|
|
|
|
echo "Valid architectures are x86, x86_64 or ppc"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-10-04 14:09:50 +00:00
|
|
|
CC=gcc-4.0
|
2013-07-21 23:15:13 +00:00
|
|
|
DESTDIR=build/release-darwin-${BUILDARCH}
|
2012-01-13 17:18:45 +00:00
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
if [ ! -f Makefile ]; then
|
2013-07-21 23:15:13 +00:00
|
|
|
echo "This script must be run from the ioquake3 build directory"
|
2012-01-13 17:18:45 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2019-01-05 02:16:41 +00:00
|
|
|
# we want to use the oldest available SDK for max compatibility. However 10.4 and older
|
2013-07-21 23:15:13 +00:00
|
|
|
# can not build 64bit binaries, making 10.5 the minimum version. This has been tested
|
2012-12-22 00:51:31 +00:00
|
|
|
# with xcode 3.1 (xcode31_2199_developerdvd.dmg). It contains the 10.5 SDK and a decent
|
|
|
|
# enough gcc to actually compile ioquake3
|
2013-07-21 23:15:13 +00:00
|
|
|
# For PPC macs, G4's or better are required to run ioquake3.
|
|
|
|
|
|
|
|
unset ARCH_SDK
|
|
|
|
unset ARCH_CFLAGS
|
2019-01-05 02:16:41 +00:00
|
|
|
unset ARCH_MACOSX_VERSION_MIN
|
|
|
|
|
|
|
|
# SDL 2.0.1 (ppc) supports MacOSX 10.5
|
|
|
|
# SDL 2.0.5+ (x86, x86_64) supports MacOSX 10.6 and later
|
|
|
|
if [ $BUILDARCH = "ppc" ]; then
|
|
|
|
if [ -d /Developer/SDKs/MacOSX10.5.sdk ]; then
|
|
|
|
ARCH_SDK=/Developer/SDKs/MacOSX10.5.sdk
|
|
|
|
ARCH_CFLAGS="-isysroot /Developer/SDKs/MacOSX10.5.sdk"
|
|
|
|
fi
|
|
|
|
ARCH_MACOSX_VERSION_MIN="10.5"
|
|
|
|
elif [ -d /Developer/SDKs/MacOSX10.6.sdk ]; then
|
|
|
|
ARCH_SDK=/Developer/SDKs/MacOSX10.6.sdk
|
|
|
|
ARCH_CFLAGS="-isysroot /Developer/SDKs/MacOSX10.6.sdk"
|
|
|
|
ARCH_MACOSX_VERSION_MIN="10.6"
|
|
|
|
else
|
|
|
|
ARCH_MACOSX_VERSION_MIN="10.7"
|
2012-01-13 17:18:45 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2013-07-21 23:15:13 +00:00
|
|
|
echo "Building ${BUILDARCH} Client/Dedicated Server against \"$ARCH_SDK\""
|
2012-01-13 17:18:45 +00:00
|
|
|
sleep 3
|
|
|
|
|
|
|
|
if [ ! -d $DESTDIR ]; then
|
|
|
|
mkdir -p $DESTDIR
|
|
|
|
fi
|
|
|
|
|
|
|
|
# For parallel make on multicore boxes...
|
|
|
|
NCPU=`sysctl -n hw.ncpu`
|
|
|
|
|
|
|
|
|
|
|
|
# intel client and server
|
2013-07-21 23:15:13 +00:00
|
|
|
#if [ -d build/release-darwin-${BUILDARCH} ]; then
|
|
|
|
# rm -r build/release-darwin-${BUILDARCH}
|
|
|
|
#fi
|
2019-01-05 02:16:41 +00:00
|
|
|
(ARCH=${BUILDARCH} CFLAGS=$ARCH_CFLAGS MACOSX_VERSION_MIN=$ARCH_MACOSX_VERSION_MIN make -j$NCPU) || exit 1;
|
2012-01-13 17:18:45 +00:00
|
|
|
|
2013-07-21 23:15:13 +00:00
|
|
|
# use the following shell script to build an application bundle
|
2019-01-05 02:16:41 +00:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET="${ARCH_MACOSX_VERSION_MIN}"
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET_PPC=
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET_X86=
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET_X86_64=
|
2013-07-21 23:15:13 +00:00
|
|
|
"./make-macosx-app.sh" release ${BUILDARCH}
|