Skip to content

Commit

Permalink
common: add support for PowerPC (#848)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0689083e109098bba56f5c733a976216db56fdc0)
  • Loading branch information
cdcseacave committed Jul 26, 2022
1 parent 5588140 commit f6634b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libs/Common/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@
#endif


#if defined(__arm__) || defined (__arm64__) || defined(__aarch64__) || defined(_M_ARM) || defined(_M_ARMT)
#if defined(__powerpc__)
#define _PLATFORM_PPC 1
#elif defined(__arm__) || defined (__arm64__) || defined(__aarch64__) || defined(_M_ARM) || defined(_M_ARMT)
#define _PLATFORM_ARM 1
#else
#define _PLATFORM_X86 1
Expand Down

0 comments on commit f6634b7

Please sign in to comment.