]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Add support for the Elbrus architecture 50/head
authorAndrew Savchenko <bircoph@altlinux.org>
Thu, 10 Oct 2019 13:20:12 +0000 (16:20 +0300)
committerAndrew Savchenko <bircoph@altlinux.org>
Thu, 10 Oct 2019 13:21:31 +0000 (16:21 +0300)
The Elbrus architecture (aka E2K, aka 2000) is LE.

Signed-off-by: Andrew Savchenko <bircoph@altlinux.org>
libs/libzrtp/include/zrtp_config.h

index b4631c20074055f1bce61e9fae91ba92443b72f0..dbfad31f7d1f5ca7ee9a8af8dc2507281837b865 100644 (file)
  */
 #define ZRTP_BYTE_ORDER ZBO_LITTLE_ENDIAN
 
+#elif defined(__e2k__)
+/*
+ * Elbrus, little endian
+ */
+#define ZRTP_BYTE_ORDER ZBO_LITTLE_ENDIAN
+
 #endif /* Automatic byte order detection */
 
 #endif