vote up 1 vote down star
1

I'd like to learn more about C/C++ linker issues and troubleshooting in Visual Studio. I've had linker problems crop up from time to time and they are really annoying since you get such limited information from the linker error messages. I've seen a few not-so-detailed MSDN articles but nothing in depth.

Where can I find a good source for linker information? Maybe a book, website or some in-depth blog posts? Are there useful utilities to aid linker troubleshooting out there? Browsing around with dumpbin is somewhat less than satisfying.

flag

71% accept rate
What does the debug output window say about the errors? Perhaps you can deal with those errors by including the right libraries and ensuring the signatures of the functions are consistent. – stanigator Aug 3 at 0:30
I don't have a particular problem in mind right now. I just want to have a better understanding of how things work so I can troubleshoot and debug in the future. – Dana Robinson Aug 3 at 0:42

1 Answer

vote up 4 vote down check

For a general understanding of linkers, read the book “Linkers and loaders”. You can read it online: http://www.iecc.com/linker/.

I think that an in-depth look into Windows executables alone will be very useful:
http://msdn.microsoft.com/en-us/magazine/cc301805.aspx
http://msdn.microsoft.com/en-us/magazine/cc301808.aspx

And of course, the documentation: http://msdn.microsoft.com/en-us/library/y0zzbyt4.aspx.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.