()
| 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', |
no outgoing calls
no test coverage detected