From aa26b86fce9f5daf241d659c82a067f4fe0384d1 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sat, 2 May 2026 12:39:46 +0900 Subject: [PATCH] internal/rosa/llvm: skip multiple-compile-threads-basic on arm64 This intermittently crashes. Signed-off-by: Ophestra --- internal/rosa/llvm.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/rosa/llvm.go b/internal/rosa/llvm.go index 4e68f8cb..a4bdb2c6 100644 --- a/internal/rosa/llvm.go +++ b/internal/rosa/llvm.go @@ -97,6 +97,8 @@ func (t Toolchain) newLLVM() (pkg.Artifact, string) { switch runtime.GOARCH { case "arm64": skipChecks = append(skipChecks, + // LLVM: intermittently crashes + "ExecutionEngine/OrcLazy/multiple-compile-threads-basic.ll", // unwind: unexpectedly passes "unwind_leaffunction", )