Displaying 3 results from an estimated 3 matches for "__section_names".
2010 Apr 29
3
[LLVMdev] Mach-O LTO and local relocations
...elocation for address 0x000FB35C in section __text does not target section __00000B26
When the assembly files are modified by hand, it has been found that
if the normal output of -flto in FSF gcc is changed from...
LTO sections (the __GNU_LTO stuff)
.text / .data / etc. (all non-LTO sections)
LTO __section_names section
...to a re-ordered .s file of...
.text / .data / etc. (all non-LTO sections)
LTO sections (the __GNU_LTO stuff)
LTO __section_names section
...the linker error disappears. I am asking here because it is unclear
how much of the Mach-O handling routines in clang were 'borrowed'
fro...
2010 Apr 30
0
[LLVMdev] Mach-O LTO and local relocations
...section __text does not target section __00000B26
>
> When the assembly files are modified by hand, it has been found that
> if the normal output of -flto in FSF gcc is changed from...
>
> LTO sections (the __GNU_LTO stuff)
> .text / .data / etc. (all non-LTO sections)
> LTO __section_names section
>
> ...to a re-ordered .s file of...
>
> .text / .data / etc. (all non-LTO sections)
> LTO sections (the __GNU_LTO stuff)
> LTO __section_names section
>
> ...the linker error disappears. I am asking here because it is unclear
> how much of the Mach-O handling...
2010 Apr 30
1
[LLVMdev] Mach-O LTO and local relocations
...tion __00000B26
> >
> > When the assembly files are modified by hand, it has been found that
> > if the normal output of -flto in FSF gcc is changed from...
> >
> > LTO sections (the __GNU_LTO stuff)
> > .text / .data / etc. (all non-LTO sections)
> > LTO __section_names section
> >
> > ...to a re-ordered .s file of...
> >
> > .text / .data / etc. (all non-LTO sections)
> > LTO sections (the __GNU_LTO stuff)
> > LTO __section_names section
> >
> > ...the linker error disappears. I am asking here because it is uncle...