|
|
发表于 2005-11-26 23:37:00
|
显示全部楼层
Re:谁能告诉我这什么编译错误是什么错了?
自己去查查msdn,清清楚楚写在上面,微软的东西当然看微软的说明书:
Visual C++ Concepts: Building a C/C++ Program
Fatal Error C1001
INTERNAL COMPILER ERROR
(compiler file file, line number)
The compiler cannot generate correct code for a construct, probably due the combination of an expression and an optimization option. Try removing one or more optimization options and recompiling the function containing the line indicated in the error message.
You can probably fix the problem by removing one or more optimization options. To determine which option is at fault, remove options one at a time and recompile until the error message goes away. The options most commonly responsible are /Og, /Oi, and /Oa. Once you determine which option is responsible, you can disable it using the optimize pragma around the function where the error occurs and continue to use the option for the rest of the module.
Try rewriting the line where the error is reported, or several lines of code surrounding that line. If that doesn't work, contact Microsoft Product Support Services.
|
|