Skip to content
Snippets Groups Projects
Commit 0d2c3695 authored by Jeremy Huddleston Sequoia's avatar Jeremy Huddleston Sequoia
Browse files

Fix PPC detection on darwin


Fixes regression introduced by 7004582c

Signed-off-by: default avatarJeremy Huddleston <jeremyhu@apple.com>
(cherry picked from commit e737a99a)
parent fffd20cd
No related branches found
No related tags found
No related merge requests found
......@@ -99,9 +99,9 @@
#endif
#endif
#if defined(__PPC__)
#if defined(__ppc__) || defined(__ppc64__) || defined(__PPC__)
#define PIPE_ARCH_PPC
#if defined(__PPC64__)
#if defined(__ppc64__) || defined(__PPC64__)
#define PIPE_ARCH_PPC_64
#endif
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment