mirror of https://github.com/BOINC/boinc.git
Mac: Add 64-bit Intel support to Client and libraries.
svn path=/trunk/boinc/; revision=14227
This commit is contained in:
parent
513f1875b3
commit
0fcf055d00
|
@ -11091,3 +11091,4 @@ Charlie 16 Nov 2007
|
||||||
mac_build/
|
mac_build/
|
||||||
boinc.xcodeproj/
|
boinc.xcodeproj/
|
||||||
project.pbxproj
|
project.pbxproj
|
||||||
|
BuildMacBOINC.sh
|
||||||
|
|
|
@ -56,12 +56,31 @@
|
||||||
##
|
##
|
||||||
|
|
||||||
targets=""
|
targets=""
|
||||||
style="Deployment"
|
|
||||||
doclean="clean"
|
doclean="clean"
|
||||||
buildall=0
|
buildall=0
|
||||||
buildlibs=0
|
buildlibs=0
|
||||||
buildclient=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
|
while [ $# -gt 0 ]; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
-noclean ) doclean="" ; shift 1 ;;
|
-noclean ) doclean="" ; shift 1 ;;
|
||||||
|
|
Loading…
Reference in New Issue