2009/9/13 michael_tn <[email protected]> > harry, i'm working through the build process again and some of the > external app's will not build, boost, for example: > > <snip>
> > not sure what to do with it at this point. > > -- michael > > Hi Michael, Note: I have redirected this mail to the hugin-ptx list to draw attention of potential other builders. Great that you're working on the Universal XCode build. Boost changed something going from 1.38 (or 1.39) to 1.40. I just applied some changes to trunk and 2009.2. In case you are working with 0.8 I've attached both scripts to this mail. Please try again. Note: do not forget to change the myREPOSITORYDIR variable to what it needs to be for you. Harry --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/hugin-ptx -~----------~----~----~----~------~----~------~--~---
# Configuration for 2 part universal build # Copyright (c) 2007-2008, Ippei Ukai # has to be the absolute path from / myREPOSITORYDIR="/PATH2HUGIN/mac/ExternalPrograms/repository"; # number of jobs that make can use, probably same as the number of CPUs. #PROCESSNUM=2 PROCESSNUM=$(hostinfo | grep "Processors active:" | sed 's/^.*://' | wc -w | sed 's/[^[:digit:]]//g'); mkdir -p $myREPOSITORYDIR; export \ REPOSITORYDIR="$myREPOSITORYDIR" \ ARCHS="ppc i386" \ \ ppcTARGET="powerpc-apple-darwin8" \ ppcOSVERSION="10.4" \ ppcMACSDKDIR="/Developer/SDKs/MacOSX10.4u.sdk" \ ppcOPTIMIZE="-mcpu=G3 -mtune=G4 -ftree-vectorize" \ ppcCC="gcc-4.0" \ ppcCXX="g++-4.0" \ \ i386TARGET="i386-apple-darwin8" \ i386OSVERSION="10.4" \ i386MACSDKDIR="/Developer/SDKs/MacOSX10.4u.sdk" \ i386OPTIMIZE="-march=prescott -mtune=pentium-m -ftree-vectorize" \ i386CC="gcc-4.0" \ i386CXX="g++-4.0" \ \ OTHERARGs="" \ OTHERMAKEARGs="--jobs=$PROCESSNUM"; # Deprecated: export \ ppcONLYARG="$ppcOPTIMIZE -mmacosx-version-min=$ppcOSVERSION" \ i386ONLYARG="$i386OPTIMIZE -mmacosx-version-min=$i386OSVERSION"; # cmake settings export CMAKE_INCLUDE_PATH="$REPOSITORYDIR/include" export CMAKE_LIBRARY_PATH="$REPOSITORYDIR/lib" # $Id: SetEnv-universal.txt 1902 2007-02-04 22:27:47Z ippei $
boost.sh
Description: Bourne shell script
