コード例 #1
0
ファイル: native_toolchain.py プロジェクト: shuoli84/pants
 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())