(self)
| 9 | |
| 10 | class RustBuilder(Builder): |
| 11 | def __init__(self): |
| 12 | super().__init__() |
| 13 | |
| 14 | self.configure_set_args: list[str] = [] |
| 15 | self.llvm_install_folder: Path = tc_build.utils.UNINIT_PATH |
| 16 | self.debug: bool = False |
| 17 | self.vendor_string: str = '' |
| 18 | |
| 19 | def build(self) -> None: |
| 20 | if not tc_build.utils.path_is_set(self.folders.build): |