Is there a way to remove debugging information from an obj, lib, dll or exe if the item was originally created with debugging information enabled? Maybe something like the unix strip command?
thank you
sol
thank you
sol
链接已复制
3 回复数
I think with PDB. all the info is in the PDB. I suppose you can re-link with /nodebug. I don't know of a strip tool.
You can use the linker's /NODEFAULTLIB option to tell it to ignore all the default libraries, or specific ones, then supply the ones you want.