mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
474d0f58f5
Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
17 lines
235 B
Python
17 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"
|