(llvm_version: str, *, echo: bool = False)
| 75 | |
| 76 | @_async_cache |
| 77 | async def _get_brew_llvm_prefix(llvm_version: str, *, echo: bool = False) -> str | None: |
| 78 | output = await _run("brew", ["--prefix", f"llvm@{llvm_version}"], echo=echo) |
| 79 | return output and output.removesuffix("\n") |
| 80 | |
| 81 | |
| 82 | @_async_cache |
no test coverage detected
searching dependent graphs…