Mac: Add 64-bit Intel support to Client and libraries.

svn path=/trunk/boinc/; revision=14227
This commit is contained in:
Charlie Fenton 2007-11-16 13:48:28 +00:00
parent 513f1875b3
commit 0fcf055d00
2 changed files with 21 additions and 1 deletions

View File

@ -11091,3 +11091,4 @@ Charlie 16 Nov 2007
mac_build/
boinc.xcodeproj/
project.pbxproj
BuildMacBOINC.sh

View File

@ -56,12 +56,31 @@
##
targets=""
style="Deployment"
doclean="clean"
buildall=0
buildlibs=0
buildclient=0
DarwinVersion=`uname -r`;
DarwinMajorVersion=`echo $DarwinVersion | sed 's/\([0-9]*\)[.].*/\1/' `;
# DarwinMinorVersion=`echo $version | sed 's/[0-9]*[.]\([0-9]*\).*/\1/' `;
#
# echo "major = $DarwinMajorVersion"
# echo "minor = $DarwinMinorVersion"
#
# Darwin version 9.x.y corresponds to OS 10.5.x
# Darwin version 8.x.y corresponds to OS 10.4.x
# Darwin version 7.x.y corresponds to OS 10.3.x
# Darwin version 6.x corresponds to OS 10.2.x
if [ "$DarwinMajorVersion" = "9" ]; then
# OS 10.5
style="Deployment"
else
style="Deployment-no64"
fi
fi
while [ $# -gt 0 ]; do
case "$1" in
-noclean ) doclean="" ; shift 1 ;;