def subsystem_dependencies(cls): return super(NativeToolchain, cls).subsystem_dependencies() + ( Binutils.scoped(cls), GCC.scoped(cls), LLVM.scoped(cls), XCodeCLITools.scoped(cls), )
def subsystem_dependencies(cls): return super().subsystem_dependencies() + ( Binutils.scoped(cls), GCC.scoped(cls), LibcDev.scoped(cls), LLVM.scoped(cls), XCodeCLITools.scoped(cls), )
def _gcc(self): return GCC.scoped_instance(self)
def select_gcc_install_location(gcc: GCC) -> GCCInstallLocationForLLVM: return GCCInstallLocationForLLVM(gcc.select())