Apple Silicon support
pwn0rz opened this issue · 1 comments
pwn0rz commented
Hi, this project is awesome and thanks for the work! I have compiled this project on the Apple Silicon successfully by adding this definition in Ghidra_9.2.3_build
.
#if defined (__APPLE_CC__) && 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
So, could you please help sync with the upstream code so that cursed Apple Silicon users can benefit?
mborgerson commented
Thanks! Updated to Ghidra 9.2.3 release now.