(self)
| 52 | |
| 53 | class HostTools(Tools): |
| 54 | def __init__(self) -> None: |
| 55 | super().__init__() |
| 56 | |
| 57 | self.cc = self.find_host_cc() |
| 58 | self.cc_is_clang = 'clang' in self.cc.name |
| 59 | |
| 60 | self.ar = self.find_host_ar() |
| 61 | self.cxx = self.find_host_cxx() |
| 62 | self.ld = self.find_host_ld() |
| 63 | self.ranlib = self.find_host_ranlib() |
| 64 | |
| 65 | def find_host_ar(self) -> Path: |
| 66 | # GNU ar is the default, no need for llvm-ar if using GCC |
nothing calls this directly
no test coverage detected