| 14 | |
| 15 | |
| 16 | class MakeVars(TypedDict, total=False): |
| 17 | ARCH: str |
| 18 | CC: Path |
| 19 | CROSS_COMPILE: str |
| 20 | HOSTCC: Path | str |
| 21 | HOSTCXX: str |
| 22 | HOSTLDFLAGS: str |
| 23 | KCFLAGS: str |
| 24 | KCONFIG_ALLCONFIG: str |
| 25 | LD: str |
| 26 | LLVM: str |
| 27 | LLVM_IAS: str |
| 28 | O: Path # ruff:ignore[ambiguous-variable-name] |
| 29 | OBJCOPY: str |
| 30 | |
| 31 | |
| 32 | class KernelBuilder(Builder): |
nothing calls this directly
no outgoing calls
no test coverage detected