cotharyus Wrote:My build is in SVN - and it seem to work for most people so far. My thoughts were simply try the package I made with the dataset include and see what happens. If it works, compare file lists, etc. - its just one more way to troubleshoot what's going on.
I think the problem is that the machine in question here is a G5 ( power pc ) all machines up unitl then have been intel-based.... and the lib files checked in to svn are x86-only ( not universal ).
To fix this, add
Code:
-arch i386 -arch ppc
to the gcc commands that build and link the dylibs. If you are using xcode, there is a project property somewhere that lets you specify the target platforms ( specify both )...
... oh and you will need the univeral sdk installed and referenced ( get it from developer.apple.com... reference it with
Code:
-isysroot /Developer/SDKs/MacOSX10.4u.sdk -Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk
The scons script does this stuff, so you can look in to it for reference.