cocos mac 环境问题记录
1、在编译cocos3.10的时候,报错call to unavailable function 'system': not available on Ios
if(system(command.c_str()) >= 0)
修改为:if(popen(command.c_str(),"r"));
原文链接:https://www.f2er.com/cocos2dx/338312.htmlcocos mac 环境问题记录
1、在编译cocos3.10的时候,报错call to unavailable function 'system': not available on Ios
if(system(command.c_str()) >= 0)
修改为:if(popen(command.c_str(),"r"));
原文链接:https://www.f2er.com/cocos2dx/338312.html