最近使用cocos2d-x 3.2 在NDK10 版本下打包APK,出现了一个特别奇怪的错误。
1. /Users/minggo/SourceCode/cocos2d-x/build/../cocos/./3d/CCBundleReader.cpp:94:23: error:
return type of out-of-line definition of 'cocos2d::BundleReader::tell'
differs from that in the declaration
ssize_t BundleReader::tell()
2. /Users/minggo/SourceCode/cocos2d-x/build/../cocos/./3d/CCBundleReader.h:90:14: note:
previous declaration is here
long int tell();
这是NDK10自身的BUG导致的。关于以上错误,cocos2d-x官方推荐用NDK9来编译cocos2d-x3.2,并且把错误通知给了谷歌。这就应该在下一版本的NDK下可以编译cocos2d-x3.2了。