Displaying 4 results from an estimated 4 matches for "elflayoutoptions".
2013 Jan 02
0
[LLVMdev] [lld] Linker script findings.
...use a wide variety of keywords like :-
1) SORT
2) ALIGN
3) OVERLAY
Overlays are most commonly used in embedded applications to overlay one
section over the other using a custom overlay manager.
You might want to look at the ELFLayout changes to see what
functionality is missing from that.
The ELFLayoutOptions has a hook into reading the Linker script which
needs to be implemented.
Thanks
Shankar Easwaran
On 12/30/2012 10:53 PM, Sean Silva wrote:
> Hi all, I have been investigating linker scripts and the functionality
> needed to support them in lld. I have attached my findings about the
> u...
2013 Jan 06
5
[LLVMdev] [lld] Linker script findings.
On Wed, Jan 2, 2013 at 12:04 PM, Shankar Easwaran
<shankare at codeaurora.org> wrote:
> You might want to look at the ELFLayout changes to see what functionality is
> missing from that.
>
> The ELFLayoutOptions has a hook into reading the Linker script which needs
> to be implemented.
So, looking into it a bit, I think that ELFLayoutOptions is not the
right place to parse the linker script. From what I can tell, it has
to be parsed during argument processing. As Nick pointed out, most of
the linker sc...
2013 Jan 07
0
[LLVMdev] [lld] Linker script findings.
...nks
Shankar Easwaran
On 1/6/2013 2:05 PM, Sean Silva wrote:
> On Wed, Jan 2, 2013 at 12:04 PM, Shankar Easwaran
> <shankare at codeaurora.org> wrote:
>> You might want to look at the ELFLayout changes to see what functionality is
>> missing from that.
>>
>> The ELFLayoutOptions has a hook into reading the Linker script which needs
>> to be implemented.
> So, looking into it a bit, I think that ELFLayoutOptions is not the
> right place to parse the linker script. From what I can tell, it has
> to be parsed during argument processing. As Nick pointed out, mos...
2012 Dec 31
5
[LLVMdev] [lld] Linker script findings.
Hi all, I have been investigating linker scripts and the functionality
needed to support them in lld. I have attached my findings about the
usage of ldscripts. My findings have been collected from:
- Reading all the GNU ld manual sections about linker scripts.
- Looking at the GNU ld and gold source code.
- Digging through a couple embedded programming tutorials.
- Reading through all of the