Hi,
I am building my application on VC ++ 6.0 and in setting i put "program datbase" in debug info.but it gives me fatal error C1067: compiler limit and the error is shown in MFC file afxcom_.h .The errpr is like this.
C:\Program Files\Microsoft Visual Studio\VC98\MFC\INCLUDE\afxcom_.h(66) : fatal error C1067: compiler limit : debug information module size exceeded
i can sucessfully complie code with "Line Numbers only" in debug info but
i wanted it to be comiple with program datbase" in debug info.
Is there any solution to resolve this error.
Hi JVene,
Thanks for reply,
I was dam busy in another project.
So I didn’t get time to look into this issue.
Now got some time so back to old issue.
Actually I wanted to build that application in VC++ 6.0
And application code is so huge so it’s very difficult to break it.
Could you please suggest me any such solution that it should build
In program database and in VC++ 6.0.
AFAIK, there is only one solution, break your modules up (as JVene suggested). Otherwise, you can't put all the debug information into the PDB. This is a limit of the compiler version you are using.
Another suggestion is to use good ol' 'std::cout' to print debugging messages on the command line.
Thanks MrViggy for the reply.
I will try to break the code.I will get back to you if having problem.
I think i need to break the enum and structures in the code.
Thanks MrViggy and JVene once again.
Bookmarks