mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-1106: Platform naming convention now supports different
architectures. Support for building on ARM.
This commit is contained in:
parent
b55d1049d4
commit
00533b2869
43 changed files with 523 additions and 461 deletions
|
@ -101,6 +101,21 @@ typedef char int1;
|
|||
typedef uint8 uintp;
|
||||
#endif
|
||||
|
||||
#if defined (__linux__) && defined (__aarch64__)
|
||||
#define HOST_ENDIAN 0
|
||||
typedef unsigned int uintm;
|
||||
typedef int intm;
|
||||
typedef unsigned long uint8;
|
||||
typedef long int8;
|
||||
typedef unsigned int uint4;
|
||||
typedef int int4;
|
||||
typedef unsigned short uint2;
|
||||
typedef short int2;
|
||||
typedef unsigned char uint1;
|
||||
typedef char int1;
|
||||
typedef uint8 uintp;
|
||||
#endif
|
||||
|
||||
#if defined(_WINDOWS)
|
||||
|
||||
#if defined(_WIN64)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue