search for: d28951

Displaying 2 results from an estimated 2 matches for "d28951".

2017 Jan 20
4
Linking Linux kernel with LLD
...are similar): > >1. LLD patches: > - D28094 (Implemented support for R_386_PC8/R_386_8 relocations) Do you remember where it was used ? >5. In arch/x86/kernel/vmlinux.lds.S commented out the "CONSTRUCTORS", because LLD doesn't support it. It is https://reviews.llvm.org/D28951. CONSTRUCTORS can be just removed, they do nothing for ELF. >6. In arch/x86/boot/setup.ld replaced 5*512 with precalculated value of 2560 because it doesn't seem that LLD supports math inside >ASSERT in linker scripts. It is actually not relative with ASSERT. LLD does not support "...
2017 Jan 20
2
Linking Linux kernel with LLD
...mented support for R_386_PC8/R_386_8 relocations) >> >> Do you remember where it was used ? >> >> >5. In arch/x86/kernel/vmlinux.lds.S commented out the "CONSTRUCTORS", >> because LLD doesn't support it. >> >> It is https://reviews.llvm.org/D28951. CONSTRUCTORS can be just removed, >> they do nothing for ELF. >> >> >6. In arch/x86/boot/setup.ld replaced 5*512 with precalculated value of >> 2560 because it doesn't seem that LLD supports math inside >ASSERT in >> linker scripts. >> >> It is a...