mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
fix iOS by adding missing ARM64 arch def
This commit is contained in:
parent
ab742abc7a
commit
883728ec19
@ -128,6 +128,7 @@
|
||||
#define POCO_ARCH_SH 0x0d
|
||||
#define POCO_ARCH_NIOS2 0x0e
|
||||
#define POCO_ARCH_AARCH64 0x0f
|
||||
#define POCO_ARCH_ARM64 0x0f // same as POCO_ARCH_AARCH64
|
||||
|
||||
|
||||
#if defined(__ALPHA) || defined(__alpha) || defined(__alpha__) || defined(_M_ALPHA)
|
||||
@ -183,7 +184,7 @@
|
||||
#else
|
||||
#define POCO_ARCH_LITTLE_ENDIAN 1
|
||||
#endif
|
||||
#elif defined(__arm64__) || defined(__arm64)
|
||||
#elif defined(__arm64__) || defined(__arm64)
|
||||
#define POCO_ARCH POCO_ARCH_ARM64
|
||||
#if defined(__ARMEB__)
|
||||
#define POCO_ARCH_BIG_ENDIAN 1
|
||||
|
Loading…
Reference in New Issue
Block a user