# build/compiler/clang.py from .gcc import GCCCompiler class ClangCompiler(GCCCompiler): def __init__(self, exe: str | None = None): super().__init__(exe or "clang")