bpo-41100: fix _decimal for arm64 Mac OS (GH-21228)
Patch by Lawrence Danna.
This commit is contained in:
parent
ba67d7386e
commit
604d95e235
|
@ -0,0 +1 @@
|
|||
add arm64 to the allowable Mac OS arches in mpdecimal.h
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue