xcode - How to link libs in Xcode7 -
i update xcode 7.0. build project errors below.i have try solution add lib "libsqlite3.dylib" , "libz.dylib" "link binary libraries" manually. doesn't work.
error: /applications/xcode.app/contents/developer/toolchains/xcodedefault.xctoolchain/usr/bin/libtool: can't open file: /applications/xcode.app/contents/developer/platforms/macosx.platform/developer/sdks/macosx10.11.sdk/usr/lib/libsqlite3.dylib (no such file or directory) error: /applications/xcode.app/contents/developer/toolchains/xcodedefault.xctoolchain/usr/bin/libtool: can't open file: /applications/xcode.app/contents/developer/platforms/macosx.platform/developer/sdks/macosx10.11.sdk/usr/lib/libz.dylib (no such file or directory)
you need remove references .framework , .dylib files under xcode 7. libcocos2d static library , therefore there no link phase. can link in .framework , .dylib files in game's project file.
Comments
Post a Comment