views:

37

answers:

1

Hi all, i've converted a my application originally written in MS Visual Studio 2008 to be compiled on MS Visual C++ 6.0 (see my previous question http://goo.gl/lWyM).

After the conversion of all my code now compiles in Release, without debug informations. In Debug i encounter a strange problem... the error C1063.

fatal error C1063: 
Error executing cl.exe. 
main.obj - 1 error(s), 163 warning(s)

In your opinion, what is the best practise to overcome this problem?

A: 

Fatal Error C1063

Visual Studio 6.0

compiler limit : compiler stack overflow

  • The program was too complex and caused the compiler stack to overflow. This error may be a result of recursive includes.

Tips

  • Simplify the program by splitting it into smaller source files, and recompile.

Do you have debug code that is accidently recursive?

Mitch Wheat
My debug code in my opinion is not recursive (infact in MSVS2008 all works properly). Have you suggestion about how can I test if my debug code is recursive?Thank you for the quick reply...
Sbaush
not without seeing your code. Also, some incentive is nice ;)
Mitch Wheat
unfortunately visual c++ 6.0 raises this error with warning level 3. with warning level 0 this problem does not compare. thank you.
Sbaush