YREA-SLS/SLS_C/sls_build/compiler/clang.py

7 lines
179 B
Python

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