Add AArch64 ILP32 support to nlist()

Closes: !7
Signed-off-by: Guillem Jover <guillem@hadrons.org>
This commit is contained in:
Frank Schaefer 2019-05-28 16:04:54 -05:00 committed by Guillem Jover
parent 4997efa59a
commit a4323f2b16

View File

@ -74,7 +74,11 @@
#elif defined(__aarch64__)
#define ELF_TARG_MACH EM_AARCH64
#if defined(__ILP32__)
#define ELF_TARG_CLASS ELFCLASS32
#else
#define ELF_TARG_CLASS ELFCLASS64
#endif
#if defined(__AARCH64EB__)
#define ELF_TARG_DATA ELFDATA2MSB
#else