godot/modules/webm/config.py
Aaron Franke 5659120af3
[3.x] Add support for the RISC-V architecture
Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
2021-10-22 12:51:23 -05:00

19 lines
275 B
Python

def can_build(env, platform):
if env["arch"].startswith("rv"):
return False
return platform not in ["iphone"]
def configure(env):
pass
def get_doc_classes():
return [
"VideoStreamWebm",
]
def get_doc_path():
return "doc_classes"