diff --git a/tc_build/llvm.py b/tc_build/llvm.py index e2173baf..3fb2f57f 100644 --- a/tc_build/llvm.py +++ b/tc_build/llvm.py @@ -533,7 +533,10 @@ def default_projects(self): def default_targets(self): all_targets = get_all_targets(self.repo) - targets = ['AArch64', 'ARM', 'BPF', 'Hexagon', 'Mips', 'PowerPC', 'RISCV', 'SystemZ', 'X86'] + targets = [ + 'AArch64', 'ARM', 'BPF', 'Hexagon', 'Mips', 'PowerPC', 'RISCV', 'Sparc', 'SystemZ', + 'X86' + ] if 'LoongArch' in all_targets: targets.append('LoongArch')