Result of compiler wrapper + cache binary detection.
| 81 | |
| 82 | @dataclass |
| 83 | class CompilerDetection: |
| 84 | """Result of compiler wrapper + cache binary detection.""" |
| 85 | |
| 86 | clang_wrapper: str |
| 87 | clangxx_wrapper: str |
| 88 | llvm_ar_wrapper: str |
| 89 | cache_binary: Optional[str] |
| 90 | cache_name: Optional[str] |
| 91 | compiler_version: str |
| 92 | zccache_version: str |
| 93 | |
| 94 | |
| 95 | def compute_source_hashes(source_dir: Path, markers: MarkerPaths) -> SourceHashes: |
no outgoing calls
no test coverage detected