tags:

views:

9

answers:

1

I am working with libraries for the first time. The libraries in question are large, and there are a lot of them. Even after reading all the relevant material I could find on SO, I keep running into linker errors. Sometimes I manage to resolve them, but in the end I don't really feel like I understand what is going on.

Is there a good source for the basics of linkers -- preferably as they apply to Xcode, but if such does not exist, then just in general. The shorter it can be (while still explaining key concepts), the better. Sort of like a Kernighan and Ritchie for linkers.

I am aware of the apple docs. I didn't find them particularly illuminating. The basics of libraries doc was more helpful, but it still left a lot of holes.

A: 

This is a pretty basic overview:

http://en.wikipedia.org/wiki/Linker_(computing)

If there are concepts/terms above that don't make sense, feel free to edit your question or post a new one.

patrickmdnet
Thanks for the answer. What I really want is to understand the whole thing well enough that I don't keep screwing up my linking. That's not doing it.
William Jockusch