码迷,mamicode.com
首页 > 其他好文 > 详细

vs 2015 编译cocos2dx 报错

时间:2018-11-18 22:35:53      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:重新定义   with   fatal   form   http   3.3   detail   mingw   csdn   

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>--------------------- 

作者:余不二
来源:CSDN
原文:https://blog.csdn.net/yu452148611/article/details/46636817

vs 2015 编译cocos2dx 报错

标签:重新定义   with   fatal   form   http   3.3   detail   mingw   csdn   

原文地址:https://www.cnblogs.com/hanframe/p/9979704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!