aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/llvm_latest.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-15 15:06:36 +0900
committerOphestra <cat@gensokyo.uk>2026-03-15 15:06:36 +0900
commita720efc32d67a56d781da92ba0107d696ee98477 (patch)
treec0cb9a1e06e51062b6e30ece04c89546ce8ad63b /internal/rosa/llvm_latest.go
parent400540cd418af93281bad614f73ee4f8c6015023 (diff)
internal/rosa/llvm: arch-specific versions
This enables temporarily avoiding a broken release on specific targets. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/llvm_latest.go')
-rw-r--r--internal/rosa/llvm_latest.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/rosa/llvm_latest.go b/internal/rosa/llvm_latest.go
new file mode 100644
index 00000000..1a8737f8
--- /dev/null
+++ b/internal/rosa/llvm_latest.go
@@ -0,0 +1,11 @@
+//go:build !arm64
+
+package rosa
+
+// latest version of LLVM, conditional to temporarily avoid broken new releases
+const (
+ llvmVersionMajor = "22"
+ llvmVersion = llvmVersionMajor + ".1.1"
+
+ llvmChecksum = "bQvV6D8AZvQykg7-uQb_saTbVavnSo1ykNJ3g57F5iE-evU3HuOYtcRnVIXTK76e"
+)