(self)
| 215 | self.config_targets = ['aspeed_g5_defconfig'] |
| 216 | |
| 217 | def build(self) -> None: |
| 218 | if not tc_build.utils.path_is_set(self.lsm.location): |
| 219 | msg = 'build() called without configured LinuxSourceManager?' |
| 220 | raise RuntimeError(msg) |
| 221 | |
| 222 | if self.get_toolchain_version() < (14, 0, 0) and self.lsm.get_version() >= (6, 14, 0): |
| 223 | # https://github.com/ClangBuiltLinux/continuous-integration2/pull/807 |
| 224 | tc_build.utils.print_warning( |
| 225 | 'aspeed_g5_defconfig does not build with LLVM < 14.0.0 and Linux >= 6.14.0, skipping build...' |
| 226 | ) |
| 227 | return |
| 228 | |
| 229 | super().build() |
| 230 | |
| 231 | |
| 232 | class ArmV7KernelBuilder(ArmKernelBuilder): |
nothing calls this directly
no test coverage detected