From 584fa207d7619d7d25d0627a5fbb290676781253 Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 29 Oct 2024 11:23:58 -0700 Subject: [PATCH] tc_build: llvm: Add Sparc to default targets There is some effort to build ARCH=sparc with Clang. Add it to the default targets list so that toolchains built with tc-build can easily test these patches. Signed-off-by: Nathan Chancellor --- tc_build/llvm.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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')