From 474d0f58f5f7c788f75798504173d653f4371b0a Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Sat, 28 Aug 2021 17:40:32 -0500 Subject: Add support for the RISC-V architecture Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions) --- modules/theora/config.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules/theora') diff --git a/modules/theora/config.py b/modules/theora/config.py index b063ed51f9..7f354a8fda 100644 --- a/modules/theora/config.py +++ b/modules/theora/config.py @@ -1,4 +1,6 @@ def can_build(env, platform): + if env["arch"].startswith("rv"): + return False return env.module_check_dependencies("theora", ["ogg", "vorbis"]) -- cgit v1.2.3