Пример #1
0
 def subsystem_dependencies(cls):
     return super(NativeToolchain, cls).subsystem_dependencies() + (
         Binutils.scoped(cls),
         GCC.scoped(cls),
         LLVM.scoped(cls),
         XCodeCLITools.scoped(cls),
     )
Пример #2
0
 def subsystem_dependencies(cls):
     return super().subsystem_dependencies() + (
         Binutils.scoped(cls),
         GCC.scoped(cls),
         LibcDev.scoped(cls),
         LLVM.scoped(cls),
         XCodeCLITools.scoped(cls),
     )
Пример #3
0
 def _gcc(self):
     return GCC.scoped_instance(self)
Пример #4
0
def select_gcc_install_location(gcc: GCC) -> GCCInstallLocationForLLVM:
    return GCCInstallLocationForLLVM(gcc.select())