miniwebrtc: add aarch64 support

miniwebrtc fails to compile on aarch64/arm64 because the architecture isn't known
this change adds the required configuration for arm64
This commit is contained in:
Manawyrm 2023-09-06 16:12:20 +00:00 committed by Harald Welte
parent 8a6c138dc7
commit 012ad0a5eb
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@
//#define WEBRTC_ARCH_ARMEL
#define WEBRTC_ARCH_32_BITS
#define WEBRTC_ARCH_LITTLE_ENDIAN
#elif defined(__aarch64__)
#define WEBRTC_ARCH_64_BITS
#define WEBRTC_ARCH_LITTLE_ENDIAN
#elif defined(__mips__)
#define WEBRTC_ARCH_32_BITS
#define WEBRTC_BIG_ENDIAN