bpo-41100: fix _decimal for arm64 Mac OS (GH-21228)

Patch by Lawrence Danna.
This commit is contained in:
Lawrence D'Anna 2020-06-30 02:15:46 -07:00 committed by GitHub
parent ba67d7386e
commit 604d95e235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1 @@
add arm64 to the allowable Mac OS arches in mpdecimal.h

View File

@ -127,6 +127,9 @@ const char *mpd_version(void);
#elif defined(__x86_64__)
#define CONFIG_64
#define ASM
#elif defined(__arm64__)
#define CONFIG_64
#define ANSI
#else
#error "unknown architecture for universal build."
#endif