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.
2 questions
5
votes
1
answer
728
views
How does link-time function inlining work?
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 ...
5
votes
2
answers
502
views
Why are symbols (especially static/internal symbols) necessary?
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 ...