MCPcopy Create free account
hub / github.com/ClangBuiltLinux/tc-build / host_target

Method host_target

tc_build/llvm.py:568–583  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

566 distribution_components.append('PollyISL')
567
568 if distribution_components:
569 self.cmake_defines['LLVM_DISTRIBUTION_COMPONENTS'] = ';'.join(distribution_components)
570 if runtime_distribution_components:
571 self.cmake_defines['LLVM_RUNTIME_DISTRIBUTION_COMPONENTS'] = ';'.join(
572 runtime_distribution_components
573 )
574
575 @staticmethod
576 def host_target() -> str:
577 uname_to_llvm: dict[str, str] = {
578 'aarch64': 'AArch64',
579 'armv7l': 'ARM',
580 'i386': 'X86',
581 'mips': 'Mips',
582 'mips64': 'Mips',
583 'ppc': 'PowerPC',
584 'ppc64': 'PowerPC',
585 'ppc64le': 'PowerPC',
586 'riscv32': 'RISCV',

Callers 2

build-llvm.pyFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected