diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-02 12:39:46 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-02 12:39:46 +0900 |
| commit | aa26b86fce9f5daf241d659c82a067f4fe0384d1 (patch) | |
| tree | ea712749b980eafcaf8a7ec7c95a3ba0214c47b7 | |
| parent | a57a8fd5d8de1890c3e6d781ad577d0752c55e68 (diff) | |
internal/rosa/llvm: skip multiple-compile-threads-basic on arm64
This intermittently crashes.
Signed-off-by: Ophestra <cat@gensokyo.uk>
| -rw-r--r-- | internal/rosa/llvm.go | 2 |
1 files changed, 2 insertions, 0 deletions
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", ) |
