vs 2015 编译cocos2dx 报错
Posted hanframe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 里 cocos2dcocosplatformwin32CCStdC-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 报错的主要内容,如果未能解决你的问题,请参考以下文章
解决Cygwin编译cocos2dx 遇到的 error: 'UINT64_C' was not declared in this scope 问题