cocos2d 编译android,出现‘fseeko64’ was not declared in this scope的错误

环境:windows7_x64+cocos2d-x-3.14+java1.7+ndk_r10e+ant_1.97+android-20
错误:
‘fopen64’ was not declared in this scope
‘ftello64’ was not declared in this scope
‘fseeko64’ was not declared in this scope
报错文件:unzip/ioapi.cpp
可是,实际上fopen64,ftello64,fseeko64在头文件ioapi.h中已经定义

你这个是不是应该在cygwin等类Linux环境下进行编译?
你安装的C++版本是?
试着在出错的程序内加上:

 #include <stdio.h>

因为这几个函数好像都是stdio库里面的。