2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2021-08-29 00:40:32 +02:00
|
|
|
return not env["arch"].startswith("rv")
|
2016-10-23 02:22:48 +02:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2016-10-23 02:22:48 +02:00
|
|
|
def configure(env):
|
|
|
|
pass
|
2017-11-15 19:23:20 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2017-11-15 19:23:20 +01:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"RegEx",
|
|
|
|
"RegExMatch",
|
|
|
|
]
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
|
2017-11-15 19:23:20 +01:00
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|