vs 2015 编译cocos2dx 报错

前端之家收集整理的这篇文章主要介绍了vs 2015 编译cocos2dx 报错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

VS 2015 compiling cocos2d-x 3.3 error “fatal error C1189: #error: Macro definition of snprintf conflicts with Standard Library function declaration”

原因:vs 2015里面已经自己定义了snpritf(),而cocos里面又重新定义了一遍,所以出现了冲突;

#ifdef snprintf
    #error: Macro definition of snprintf conflicts with Standard Library function declaration”
#endif

解决删除cocos2d 里 cocos2d\cocos\platform\win32\CCStdC-win32.h的代码

<p>
#if !defined(isnan)
 #define isnan _isnan
#endif</p><p><strong>//#ifndef snprintf
//#define snprintf _snprintf
//#endif</strong></p><p>#endif // __MINGW32__</p>
原文链接:https://www.f2er.com/cocos2dx/340971.html

猜你在找的Cocos2d-x相关文章