Problems with my .exe symbol

  • Thread starter Thread starter solarin
  • Start date Start date
S

solarin

Hi,

I've generated a program. It compiles and runs ok, but I can't debbug
it. I've got the following error:

Loaded "D:\CMS\Debug\CMS.exe', no matching symbolic information found.
I'm compiling a debug version of course.

What can I do with that?

Thanks for the support.
 
solarin ha escrito:
Hi,

I've generated a program. It compiles and runs ok, but I can't debbug
it. I've got the following error:

Loaded "D:\CMS\Debug\CMS.exe', no matching symbolic information found.
I'm compiling a debug version of course.

What can I do with that?

Thanks for the support.


The compiler does not generate the .pdb file, but I'm compiling in
debug mode. I'm using VS6.
 
...
The compiler does not generate the .pdb file, but I'm compiling in
debug mode. I'm using VS6.

Make sure that you use the following options:

Compiler: /Zi (/ZI can also be used in debug build)
Linker: /debug /debugtype:cv /pdb:yourapp.pdb /pdbtype:con

All these options can be also set in Project Settings dialog
(look up an option in VC help to find the corresponding setting)

Regards,
Oleg
[VC++ MVP http://www.debuginfo.com/]
 
Back
Top