加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
webrtc-fix-typedefs-on-other-arches.patch 834 Bytes
一键复制 编辑 原始数据 按行查看 历史
huajingyun 提交于 2022-11-14 08:37 . Add support loongarch64
diff -Nur a/webrtc/rtc_base/system/arch.h b/webrtc/rtc_base/system/arch.h
--- a/webrtc/rtc_base/system/arch.h 2020-11-28 03:30:53.000000000 +0800
+++ b/webrtc/rtc_base/system/arch.h 2022-04-11 14:35:41.689733918 +0800
@@ -51,7 +51,19 @@
#define WEBRTC_ARCH_32_BITS
#define WEBRTC_ARCH_LITTLE_ENDIAN
#else
-#error Please add support for your architecture in rtc_base/system/arch.h
+/* instead of failing, use typical unix defines... */
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
+#define WEBRTC_ARCH_LITTLE_ENDIAN
+#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
+#define WEBRTC_ARCH_BIG_ENDIAN
+#else
+#error __BYTE_ORDER__ is not defined
+#endif
+#if defined(__LP64__)
+#define WEBRTC_ARCH_64_BITS
+#else
+#define WEBRTC_ARCH_32_BITS
+#endif
#endif
#if !(defined(WEBRTC_ARCH_LITTLE_ENDIAN) ^ defined(WEBRTC_ARCH_BIG_ENDIAN))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化