This adds defines for the RISC-V specific e_flags values, and some
missing static relocations.
The definitions come from the RISC-V ELF specification, found at:
https://github.com/riscv/riscv-elf-psabi-doc/blob/master/riscv-elf.md
Differential D20766
Add some missing RISC-V ELF defines mhorne on Jun 26 2019, 1:09 AM. Authored by Tags None Referenced Files
Subscribers
Details
This adds defines for the RISC-V specific e_flags values, and some The definitions come from the RISC-V ELF specification, found at:
Diff Detail
Event TimelineComment Actions Include a definition for EF_RISCV_FLOAT_ABI_SOFT. Although this is not defined
|
I'm not sure it makes sense to include this one. If you wanted to test for the software ABI you'd write (e_flags & EF_RISCV_FLOAT_ABI_MASK) == 0, where the mask is 0x6.