mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-27 02:49:42 +00:00
gcc on darwin defines __ppc__, not __powerpc__
This commit is contained in:
parent
ea61b2a4fc
commit
09cd7ccfd6
@ -65,7 +65,7 @@ static inline bool is_read_only_memory(uintptr addr)
|
|||||||
#if defined(x86_64) || defined(__x86_64__)
|
#if defined(x86_64) || defined(__x86_64__)
|
||||||
#define TARGET_NATIVE TARGET_AMD64
|
#define TARGET_NATIVE TARGET_AMD64
|
||||||
#endif
|
#endif
|
||||||
#if defined(powerpc) || defined(__powerpc__)
|
#if defined(powerpc) || defined(__powerpc__) || defined(__ppc__)
|
||||||
#define TARGET_NATIVE TARGET_POWERPC
|
#define TARGET_NATIVE TARGET_POWERPC
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user