Displaying 1 result from an estimated 1 matches for "ecccd12".
2012 Dec 31
5
[LLVMdev] [lld] Linker script findings.
...s:
1. Apply relocations to the output section as though it were at the VMA.
2. Actually place the output section at the LMA.
Analysis of Functionality used by Linux
=======================================
The version of linux that I'm currently looking at is 36 commits past
v3.8-rc1 (commit ecccd12 to be exact).
Inside Linux, most linker scripts have suffix `.lds.S`, the `.S`
signifying that indicates that they need to be passed through the C
preprocessor.
This is not as ugly as you may think at first. The C preprocessor is used
primarily as a means of sharing common constants and definitio...