[3.x] Add support for the RISC-V architecture

Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
This commit is contained in:
Aaron Franke
2021-08-31 00:27:46 -05:00
parent 72fb4d7b09
commit 5659120af3
7 changed files with 24 additions and 4 deletions

View File

@@ -1,4 +1,6 @@
def can_build(env, platform):
if env["arch"].startswith("rv"):
return False
return platform not in ["iphone"]