From: Andrey Volk Date: Sun, 30 Sep 2018 15:53:41 +0000 (+0300) Subject: FS-11423: [mod_isac] Add ARM64 detection. X-Git-Tag: v1.8.3~1^2~41^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ebe4134efe420a2b8be19e52584b1eb87691ee0;p=thirdparty%2Ffreeswitch.git FS-11423: [mod_isac] Add ARM64 detection. --- diff --git a/src/mod/codecs/mod_isac/typedefs.h b/src/mod/codecs/mod_isac/typedefs.h index e4a85afe30..df0df45723 100644 --- a/src/mod/codecs/mod_isac/typedefs.h +++ b/src/mod/codecs/mod_isac/typedefs.h @@ -61,6 +61,9 @@ #define WEBRTC_ARCH_X86_64 #define WEBRTC_ARCH_64_BITS #define WEBRTC_ARCH_LITTLE_ENDIAN +#elif defined(__aarch64__) +#define WEBRTC_ARCH_64_BITS +#define WEBRTC_ARCH_LITTLE_ENDIAN #elif defined(_M_IX86) || defined(__i386__) #define WEBRTC_ARCH_X86_FAMILY #define WEBRTC_ARCH_X86