mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-23 04:33:24 +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__)
|
||||
#define TARGET_NATIVE TARGET_AMD64
|
||||
#endif
|
||||
#if defined(powerpc) || defined(__powerpc__)
|
||||
#if defined(powerpc) || defined(__powerpc__) || defined(__ppc__)
|
||||
#define TARGET_NATIVE TARGET_POWERPC
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user