(self)
| 434 | |
| 435 | class LLVMKernelBuilder(Builder): |
| 436 | def __init__(self) -> None: |
| 437 | super().__init__() |
| 438 | |
| 439 | self.bolt_instrumentation = False |
| 440 | self.bolt_sampling_output: Path = tc_build.utils.UNINIT_PATH |
| 441 | self.matrix = {} |
| 442 | self.silent: bool = True |
| 443 | self.toolchain_prefix: Path = tc_build.utils.UNINIT_PATH |
| 444 | |
| 445 | def build(self) -> None: |
| 446 | lsm = LinuxSourceManager() |