solarin ha escrito:
> Hi,
>
[quoted text clipped - 7 lines]
>
> Thanks for the support.
The compiler does not generate the .pdb file, but I'm compiling in
debug mode. I'm using VS6.
Oleg Starodumov - 28 Aug 2006 15:16 GMT
> > I've generated a program. It compiles and runs ok, but I can't debbug
> > it. I've got the following error:
[quoted text clipped - 5 lines]
> 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/]