2013-07-18 15:39:08 +00:00
|
|
|
#!/bin/bash
|
2012-12-31 01:32:15 +00:00
|
|
|
#
|
|
|
|
|
2013-01-07 00:19:58 +00:00
|
|
|
# Let's make the user give us a target build system
|
2013-01-01 22:35:49 +00:00
|
|
|
|
|
|
|
if [ $# -ne 1 ]; then
|
|
|
|
echo "Usage: $0 target_architecture"
|
2013-03-22 11:33:27 +00:00
|
|
|
echo "Example: $0 x86"
|
2013-01-01 22:36:16 +00:00
|
|
|
echo "other valid options are x86_64 or ppc"
|
2013-01-01 22:35:49 +00:00
|
|
|
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
|
|
|
|
|
2013-03-22 11:33:27 +00:00
|
|
|
if [ "$1" == "x86" ]; then
|
|
|
|
BUILDARCH=x86
|
2013-01-01 22:35:49 +00:00
|
|
|
elif [ "$1" == "x86_64" ]; then
|
|
|
|
BUILDARCH=x86_64
|
|
|
|
elif [ "$1" == "ppc" ]; then
|
|
|
|
BUILDARCH=ppc
|
|
|
|
else
|
|
|
|
echo "Invalid architecture: $1"
|
2013-03-22 11:33:27 +00:00
|
|
|
echo "Valid architectures are x86, x86_64 or ppc"
|
2013-01-01 22:35:49 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-01-06 22:18:48 +00:00
|
|
|
CC=gcc-4.0
|
|
|
|
DESTDIR=build/release-darwin-${BUILDARCH}
|
2011-11-20 08:59:21 +00:00
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
if [ ! -f Makefile ]; then
|
|
|
|
echo "This script must be run from the ioquake3 build directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-11-22 07:40:20 +00:00
|
|
|
# we want to use the oldest available SDK for max compatibility. However 10.4 and older
|
2012-12-20 00:15:17 +00:00
|
|
|
# can not build 64bit binaries, making 10.5 the minimum version. This has been tested
|
|
|
|
# with xcode 3.1 (xcode31_2199_developerdvd.dmg). It contains the 10.5 SDK and a decent
|
|
|
|
# enough gcc to actually compile ioquake3
|
2012-12-31 01:32:15 +00:00
|
|
|
# For PPC macs, G4's or better are required to run ioquake3.
|
|
|
|
|
|
|
|
unset ARCH_SDK
|
|
|
|
unset ARCH_CFLAGS
|
2017-09-14 21:44:20 +00:00
|
|
|
unset ARCH_MACOSX_VERSION_MIN
|
2012-12-20 00:15:17 +00:00
|
|
|
|
2018-04-24 22:24:15 +00:00
|
|
|
# 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
|
2017-09-14 21:44:20 +00:00
|
|
|
ARCH_MACOSX_VERSION_MIN="10.5"
|
2018-04-24 22:24:15 +00:00
|
|
|
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"
|
2017-09-14 21:49:30 +00:00
|
|
|
else
|
|
|
|
ARCH_MACOSX_VERSION_MIN="10.7"
|
2011-11-20 08:59:21 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2012-12-31 01:32:15 +00:00
|
|
|
echo "Building ${BUILDARCH} Client/Dedicated Server against \"$ARCH_SDK\""
|
2011-11-20 08:59:21 +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-18 15:39:08 +00:00
|
|
|
#if [ -d build/release-darwin-${BUILDARCH} ]; then
|
|
|
|
# rm -r build/release-darwin-${BUILDARCH}
|
|
|
|
#fi
|
2017-09-14 21:44:20 +00:00
|
|
|
(ARCH=${BUILDARCH} CFLAGS=$ARCH_CFLAGS MACOSX_VERSION_MIN=$ARCH_MACOSX_VERSION_MIN make -j$NCPU) || exit 1;
|
2011-11-20 08:59:21 +00:00
|
|
|
|
2013-07-18 05:11:10 +00:00
|
|
|
# use the following shell script to build an application bundle
|
2017-09-14 21:49:30 +00:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET="${ARCH_MACOSX_VERSION_MIN}"
|
2018-04-24 22:24:15 +00:00
|
|
|
export MACOSX_DEPLOYMENT_TARGET_PPC=
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET_X86=
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET_X86_64=
|
2013-07-18 05:11:10 +00:00
|
|
|
"./make-macosx-app.sh" release ${BUILDARCH}
|