Skip to content

Commit

Permalink
Merge pull request #283 from nathanchance/enable-sparc-by-default
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanchance authored Nov 20, 2024
2 parents c6d4545 + 584fa20 commit fc5caab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tc_build/llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit fc5caab

Please sign in to comment.