
c++/com
蒜泥的冬天
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
occcont.cpp Line 925错误
【问题描述】办公室的两台电脑跑swifthorse程序妥妥的,拿到家里电脑一编译就出现如下错误:Debug assertion failed!f:\dd\vctools\vc7libs\ship\atlmfc\src\mfc\occcont.cpp Line 925.【解决方案】运行以来的ocx注册一下...原创 2013-12-30 22:38:12 · 16616 阅读 · 5 评论 -
vc++ error CVT1100: 资源重复。类型: VERSION,名称: 1,语言: 0x0804
【问题描述】1>CVTRES : fatal error CVT1100: 重复的资源。type:VERSION, name:1, language:0x08041>LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏【解决方案】原因是两个项目合并到一起后,资源重复了,简单的将其中一个项目的rc文件删掉;编过再说...原创 2014-01-06 17:32:16 · 6806 阅读 · 0 评论 -
vc++ 解决方案目录不生成ipch文件夹和.sdf文件
转自在使用Visual Studio 2010开发C++程序的时候,会发现有一些奇怪的文件被创建出来,比如一个叫ipch的文件夹,和一个与工程同名的.sdf文件,而且ipch下面的文件和.sdf文件都很大,至少有10M,大项目可能超过100M,那这些文件是干什么用的呢?这些文件是Visual Studio用来保存预编译的头文件和Intellisense用的,删除这些文件对于工程的开发完全没转载 2014-01-06 16:16:43 · 2143 阅读 · 0 评论 -
cmake编jrtplib在test_big_endian处报错
【问题描述】The C compiler identification is MSVC 16.0.30319.1The CXX compiler identification is MSVC 16.0.30319.1Check if the system is big endianSearching 16 bit integerCMake Error at C:/Program原创 2014-01-13 15:55:58 · 2386 阅读 · 0 评论 -
【编译问题】error LNK2001: unresolved external symbol __iob
【问题描述】某ocx项目(vs2010)调用某静态lib(vs2008下编译的),报error LNK2001: unresolved external symbol __iob【解决方案】在ocx项目中,的stdafx.cpp中增加如下代码#ifdef __cplusplusextern "C"#endifFILE _iob[3] = {__i原创 2014-01-15 10:01:36 · 3387 阅读 · 0 评论 -
vs2008至vs2012切换报链接错误
Error 108 error LNK2019: unresolved external symbol "public: static void __cdecl std::_String_base::_Xran(void)" (?_Xran@_String_base@std@@SAXXZ) referenced in function "public: class std::basic_str原创 2014-01-11 16:57:50 · 1357 阅读 · 0 评论