高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】请教 c++ internal compiler error 错误
请教 c++ internal compiler error 错误
请教 c++ internal compiler error 错误
//
// define the sole extension module object.
ac_implement_extension_module(hxlkdll);
出现错误
d:\arxdemo\hxlk\hxlk.cpp(11) : fatal error c1001: internal compiler error
(compiler file 'msc1.cpp', line 1786)
please choose the technical support command on the visual c++
help menu, or open the technical support help file for more information
error executing cl.exe.
请问如何解决,多谢!!
“以前碰到很多人都出现莫名其妙的internal compiler error,有些人以为vc出错了,如下:
d:\myfiles\vc\data\datadlg.cpp(202) : fatal error c1001: internal compiler error
(compiler file 'msc1.cpp', line 1786)
please choose the technical support command on the visual c++
help menu, or open the technical support help file for more information
error executing cl.exe.
但有一种情况编译器会出现这种错误,如下:
if (!hfile.open("d:\\temp\\test.txt",cfile::cfile::modecreate)) //打开文件
原因是多了一个“cfile::”
编译器不能准确地找到这一行,因此,这种错误很难找。”
所以可能哪里代码有点问题,要不把代码发上来看看……
|