关于eclipse的"serializing cdt project settings"解决方案

来源:互联网 发布:大学生贷款骗局知多少 编辑:程序博客网 时间:2024/06/06 12:30
最近在使用eclipse作为cocos2dx的交叉编译工具。但是某天突然相关工程打不开,打开eclipse直接提示


“serializing cdt project settings” has encountered a problem 


然后就是项目工程打不开了,熟悉cocos2dx开发流程的人,都知道建立一个android工程也不是太简单,很方便,关键是这个问题是第二次出现,


非常恶心,所以想了一会,看了一下项目底下的文件,


1、CDT 是支持c++相关的


2、文件修改时间,


最后锁定了.cproject



接着下面一段

[html] view plaincopyprint?
  1. <cconfiguration id="0.1230402123.1377291156">  
  2.             <storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="0.1230402123.1377291156" moduleId="org.eclipse.cdt.core.settings" name="Debug">  
  3.                 <externalSettings/>  
  4.                 <extensions>  
  5.                     <extension id="org.eclipse.cdt.core.VCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>  
  6.                     <extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>  
  7.                     <extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>  
  8.                     <extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>  
  9.                     <extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>  
  10.                     <extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>  
  11.                 </extensions>  
  12.             </storageModule>  
  13.             <storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>  
  14.         </cconfiguration>  

把这一段删除,保存,再打开eclipse,ok了。


0 0