Displaying 3 results from an estimated 3 matches for "__stop_orphan".
2020 Jun 02
2
LLD : __start_ and __end_ symbols for orphan sections
...r script as generic as possible so how can I tell lld to create these symbols without having to add them in the linker script?
>
>Thanks
>A
It works for me.
SECTIONS {
data : { *(data) }
}
.section data,"aw"
.quad __start_orphan
.quad __stop_orphan
.section orphan,"aw"
.quad __start_data
.quad __stop_data
Can you give an example __start_ or __end_ symbols are not defined for orphan sections?
2020 May 28
2
LLD : __start_ and __end_ symbols for orphan sections
lld does not seem to create the __start and __end symbols for orphan sections.
I would like to keep my linker script as generic as possible so how can I tell lld to create these symbols without having to add them in the linker script?
Thanks
A
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2020 Jun 02
2
LLD : __start_ and __end_ symbols for orphan sections
...to add them in the linker script?
> >
> >Thanks
> >A
>
> It works for me.
>
> SECTIONS {
> data : { *(data) }
> }
>
> .section data,"aw"
> .quad __start_orphan
> .quad __stop_orphan
>
> .section orphan,"aw"
> .quad __start_data
> .quad __stop_data
>
>
> Can you give an example __start_ or __end_ symbols are not defined for orphan sections?
>
> _______________________________________________
> LLVM Develo...