Skip to main content

Questions tagged [linker]

For questions about linkers or the process of linkage. Linkage is the step after compilation that resolves any symbols in a compiled program that reference other libraries or other modules.

5 votes
1 answer
728 views

I am familiar with traditional linking concepts (static and dynamic linking, relocation, PIE) and with traditional compiler optimizations (such as static expression evaluation, loop unrolling and ...
Borisav Živanović's user avatar
5 votes
2 answers
502 views

Compiled languages seem to always have to attach some name to any global object, such as a function or global variable, even after they are compiled, but not local variables. As such, languages such ...
CPlus's user avatar
  • 10.5k