internal compiler error
-
I am facing the following error while compiling my programme. 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 xicl6.exe.
Rajesh
-
I am facing the following error while compiling my programme. 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 xicl6.exe.
Rajesh
First do one thing , In your workspace goto Menu=>Build=>Batch Build=>Check Both debug and relaese =>Click on Clean button and again rebuld all workspace. If not soleved then close worksapce delete release and debug folder,delete .opt,.ncb files and again try to rebuild all. if problem still persist then reinstall VC.
abhi
-
First do one thing , In your workspace goto Menu=>Build=>Batch Build=>Check Both debug and relaese =>Click on Clean button and again rebuld all workspace. If not soleved then close worksapce delete release and debug folder,delete .opt,.ncb files and again try to rebuild all. if problem still persist then reinstall VC.
abhi
I don't remember the error no. ....but it was INTERNAL COMPILER ERROR. I had declared a struct RGB{} in one of my local project file. But struct with same name was already present in one of the system header file. Try to check newly added struct and other data types names. Regards.
-
I am facing the following error while compiling my programme. 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 xicl6.exe.
Rajesh
rajeshgupta1253 wrote:
fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 1786)
OK - what does google return? Millions of people will have had the same issue. And please, please - do not reinstall Visual Studio as you were advised! There is no point in that, as your problem is almost certainly some code construct VC++ could not swallow. Your new installation would end up choking on the same line of code.
Let's think the unthinkable, let's do the undoable, let's prepare to grapple with the ineffable itself, and see if we may not eff it after all.
Douglas Adams, "Dirk Gently's Holistic Detective Agency" -
I am facing the following error while compiling my programme. 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 xicl6.exe.
Rajesh
Yes like jhwurmbach said do not reinstall VC++ it wont solve the problem. Try to find out which statement is causing the error by commenting code selectively. Then try to re-write the faulty statement. -Saurabh
-
I am facing the following error while compiling my programme. 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 xicl6.exe.
Rajesh
Start commenting out code (preferably in reverse order of how it was added) until the compiler is happy. Then you will know the offending statement(s).
"Love people and use things, not love things and use people." - Unknown
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne