mirror of
https://gitlab.freedesktop.org/libbsd/libbsd.git
synced 2025-01-09 03:08:38 +01:00
Add support for ELF machine EM_SPARC32PLUS
32-bit SPARC on V8+ uses a different ELF machine type. Fixes: https://bugs.gentoo.org/634550 Signed-off-by: Guillem Jover <guillem@hadrons.org>
This commit is contained in:
parent
0b61c5ffed
commit
0b65d43963
@ -186,7 +186,11 @@
|
||||
#define ELF_TARG_MACH EM_SPARCV9
|
||||
#define ELF_TARG_CLASS ELFCLASS64
|
||||
#else
|
||||
#if defined(__sparc_v9__)
|
||||
#define ELF_TARG_MACH EM_SPARC32PLUS
|
||||
#else
|
||||
#define ELF_TARG_MACH EM_SPARC
|
||||
#endif
|
||||
#define ELF_TARG_CLASS ELFCLASS32
|
||||
#endif
|
||||
#define ELF_TARG_DATA ELFDATA2MSB
|
||||
|
Loading…
Reference in New Issue
Block a user