Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Xcode build errors ====== If you have built libpng and installed it into /usr/local/lib, you may see the following when trying to build a universal binary:<code> Line Location Tool:0: in /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib/libPng.dylib, file is not of required architecture </code> This is because /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib is actually a symlink. This is probably a mistake, so delete it and make it an empty directory instead. /usr/local is supposed to be for us - users, so Apple shouldn't include our custom build files by default. <code> sudo rm /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib sudo mkdir /Developer/SDKs/MacOSX10.4u.sdk/usr/local/lib </code> ===== See Also ===== http://www.cocoabuilder.com/archive/message/cocoa/2008/2/8/198301 docs/programming/xcode/build_errors.txt Last modified: 2009/01/02 23:33by billh