Skip to content

Commit

Permalink
webrtc-audio-processing: Enable RISC-V
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaofengli committed Jun 12, 2021
1 parent cf8441d commit f13cf5e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ stdenv.mkDerivation rec {
sha256 = "1gsx7k77blfy171b6g3m0k0s0072v6jcawhmx1kjs9w5zlwdkzd0";
};

patches = [ ./enable-riscv.patch ];

buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ ApplicationServices ]);

patchPhase = lib.optionalString stdenv.hostPlatform.isMusl ''
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
diff --git a/webrtc/typedefs.h b/webrtc/typedefs.h
index d875490..ce1f3e8 100644
--- a/webrtc/typedefs.h
+++ b/webrtc/typedefs.h
@@ -26,6 +26,13 @@
#elif defined(__aarch64__)
#define WEBRTC_ARCH_64_BITS
#define WEBRTC_ARCH_LITTLE_ENDIAN
+#elif defined(__riscv) || defined(__riscv__)
+#define WEBRTC_ARCH_LITTLE_ENDIAN
+#if __riscv_xlen == 64
+#define WEBRTC_ARCH_64_BITS
+#else
+#define WEBRTC_ARCH_32_BITS
+#endif
#elif defined(_M_IX86) || defined(__i386__)
#define WEBRTC_ARCH_X86_FAMILY
#define WEBRTC_ARCH_X86

0 comments on commit f13cf5e

Please sign in to comment.