godot/modules/regex/config.py
Aaron Franke 474d0f58f5
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:10 -05:00

18 lines
235 B
Python

def can_build(env, platform):
return not env["arch"].startswith("rv")
def configure(env):
pass
def get_doc_classes():
return [
"RegEx",
"RegExMatch",
]
def get_doc_path():
return "doc_classes"