cocos mac 环境问题记录 1、在编译cocos3.10的时候,报错call to unavailable function 'system': not available on Ios 错误发生在文件 CCFileUtils.cpp 1201行 if(system(command.c_str()) = 0) 修改为:if( popen ( command.c
cocos mac 环境问题记录
1、在编译cocos3.10的时候,报错call to unavailable function 'system': not available on Ios
错误发生在文件 CCFileUtils.cpp 1201行
if(system(command.c_str()) >= 0)
修改为:if(popen(command.c_str(), "r"));