summaryrefslogtreecommitdiffstats
path: root/modules/mono/config.py
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2021-08-28 17:40:32 -0500
committerAaron Franke <arnfranke@yahoo.com>2021-10-22 12:51:10 -0500
commit474d0f58f5f7c788f75798504173d653f4371b0a (patch)
tree37078844ce6f37c17968b57fa13e1a4b2687dbaa /modules/mono/config.py
parent3bebbcacdbe7922af97fd8b26ef30c19eee94ba0 (diff)
downloadredot-engine-474d0f58f5f7c788f75798504173d653f4371b0a.tar.gz
Add support for the RISC-V architecture
Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r--modules/mono/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py
index 4c851a2989..df02d9a309 100644
--- a/modules/mono/config.py
+++ b/modules/mono/config.py
@@ -2,7 +2,7 @@ supported_platforms = ["windows", "osx", "linuxbsd", "server", "android", "haiku
def can_build(env, platform):
- return True
+ return not env["arch"].startswith("rv")
def configure(env):