Displaying 2 results from an estimated 2 matches for "elf64lppc".
2016 Oct 28
2
Using lld in ELLCC for different targets
...ogram for Linux:
ARM32 v6: Good
ARM32 v7: Good
ARM32 big endian: Not supported by lld, no armelfb_linux_eabi emulation
mode.
Aarch64: Good
MIPS 32 little and big endian: Good
MIPS64 big endian: Good
PPC32: lld failed with a bad relocation type.
PPC64 little endian: Not supported by lld, no elf64lppc emulation mode.
X86 32 and 64: Good
As a test I built clang to run native on ARMv6, ARMv7, Aarch64, MIPS32,
MIPS64, and x86_84 Linux: Good
Very cool!
I use ld for mingw-w64 targets. Is there a mode for the COFF lld that
makes it also act like ld?
Now I have to look into how lld supports Link...
2016 Oct 28
0
[cfe-dev] Using lld in ELLCC for different targets
...ARM32 big endian: Not supported by lld, no armelfb_linux_eabi emulation
> mode.
>
> Aarch64: Good
>
> MIPS 32 little and big endian: Good
>
> MIPS64 big endian: Good
>
> PPC32: lld failed with a bad relocation type.
>
> PPC64 little endian: Not supported by lld, no elf64lppc emulation mode.
>
> X86 32 and 64: Good
>
> As a test I built clang to run native on ARMv6, ARMv7, Aarch64, MIPS32,
> MIPS64, and x86_84 Linux: Good
>
> Very cool!
>
Awesome results!
I wonder if ARM32 BE is a real thing. I know that the processor is
bi-endian, but is there...