Return whether the active fbuild executable exposes ``compile-many``.
()
| 217 | |
| 218 | @lru_cache(maxsize=1) |
| 219 | def fbuild_supports_compile_many() -> bool: |
| 220 | """Return whether the active fbuild executable exposes ``compile-many``.""" |
| 221 | return _fbuild_supports_subcommand("compile-many") |
| 222 | |
| 223 | |
| 224 | # Parses size lines emitted into per-sketch fbuild logs. Matches both unit |
no test coverage detected