search for: __rt_psrelocs_size

Displaying 4 results from an estimated 4 matches for "__rt_psrelocs_size".

2018 Feb 08
2
LLD: targeting cygwin
...*(.data2) *(SORT(.data$*)) KEEP(*(.jcr)) __data_end__ = . ; *(.data_cygwin_nocopy) } .rdata BLOCK(__section_alignment__) : { *(.rdata) *(SORT(.rdata$*)) __rt_psrelocs_start = .; KEEP(*(.rdata_runtime_pseudo_reloc)) __rt_psrelocs_end = .; } __rt_psrelocs_size = __rt_psrelocs_end - __rt_psrelocs_start; ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .; __RUNTIME_PSEUDO_RELOC_LIST_END__ = .; ___RUNTIME_PSEUDO_RELOC_LIST__ = . - __rt_psrelocs_size; __RUNTIME_PSEUDO_RELOC_LIST__ = . - __rt_psrelocs_size; .eh_frame BLOCK(__section_alignment__) : { KEEP...
2018 Feb 09
0
LLD: targeting cygwin
...__data_end__ = . ; > *(.data_cygwin_nocopy) > } > .rdata BLOCK(__section_alignment__) : > { > *(.rdata) > *(SORT(.rdata$*)) > __rt_psrelocs_start = .; > KEEP(*(.rdata_runtime_pseudo_reloc)) > __rt_psrelocs_end = .; > } > __rt_psrelocs_size = __rt_psrelocs_end - __rt_psrelocs_start; > ___RUNTIME_PSEUDO_RELOC_LIST_END__ = .; > __RUNTIME_PSEUDO_RELOC_LIST_END__ = .; > ___RUNTIME_PSEUDO_RELOC_LIST__ = . - __rt_psrelocs_size; > __RUNTIME_PSEUDO_RELOC_LIST__ = . - __rt_psrelocs_size; > .eh_frame BLOCK(__section_ali...
2018 Feb 07
0
LLD: targeting cygwin
COFF lld doesn't support the linker script at the moment, and I'm sad to say that it is very unlikely to support that in the future. Linker script support is so huge that I can't imagine we really want it for COFF. GNU BFD linker supports it because the linker is built as an interpreter for the built-in linker script (and that's one of the reasons why GNU linker is by far more
2018 Feb 07
2
LLD: targeting cygwin
Hello, I have a user who is trying to get LLD to link for the cygwin target: https://github.com/zig-lang/zig/issues/751 Currently the issue they are running into is needing to define a linker script, but the COFF driver (or MinGW driver) does not have support for that. Is there documentation or advice for how to use LLD to link for cygwin? As a starting point, which driver to use? Regards,