我的应用程序有一个错误。Xcode ios5 gm_seed。
我已经将libz1.2.5.dynlib添加到OTHER_LDFlag
Undefined symbols for architecture armv7:
"___zzip_aligned4", referenced from:
___zzip_parse_root_directory in libZZipLib.a(zip.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)有什么想法吗?
发布于 2012-05-27 20:06:28
我最终用Cocos2D修复了一个类似的错误,就是搜索有问题的函数。在本例中,对于zzip_aligned4,请使用ctrl+shift+f,然后在函数名上输入alt+click以转到定义。您可能会发现,它位于标准libz或另一个版本的libz中,而不是libz.2.5。
https://stackoverflow.com/questions/7765163
复制相似问题