kthompson
kthompson

Reputation: 892

How do you get Symbols from the Windows linker?

I am wondering if there is a way to output symbols from the windows linker. I know it will dump a symbol map but I want something that I can load in a debugger.

If the linker doesn't output symbols can I get them from an existing obj file?

Upvotes: 1

Views: 104

Answers (1)

kthompson
kthompson

Reputation: 892

Apparently I missed this in the docs but you justs need to supply /PDB:file.pdb /DEBUG:FULL as the linker arguments. See: https://msdn.microsoft.com/en-us/library/kwx19e36.aspx

Upvotes: 2

Related Questions