首先提一下背景哈。我需要在eclipse下阅读cocos2dx代码。插件肯定是安装了的。还有的就是安装gcc 4.8
环境:ubuntu12.04 + eclipse Juno + CDT
导入源码之后,很多红色的地方。为此百度+google了很长时间,无解,郁闷许久。
在看c++ 11新特性std::bind和std::function的时候看到一个宏#if __cplusplus >= 201103L
google之后发现如下一句http://www.stroustrup.com/C++11FAQ.html#11:
In C++11 the macro __cplusplus will be set to a value that differs from (is greater than) the current 199711L.
所以方法就来了,只需如下图设置即可。其中宏LINUX是因为cocos2dx是跨平台的,需要明确告知是LINUX平台下的代码。