Skip to content

Commit cedee9b

Browse files
committed
[skiplang/skc] Update to LLVM 20.
1 parent 4b23a28 commit cedee9b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
You will need at least the following installed:
88

9-
* LLVM 15.
10-
* wasm-ld 15 (this is part of LLVM, but your distribution might split it into
9+
* LLVM 20.
10+
* wasm-ld 20 (this is part of LLVM, but your distribution might split it into
1111
a separate package: your wasm-ld version must match your LLVM version).
1212
* typescript 5.7 or later.
1313

bin/apt-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
default_steps=(skiplang-build-deps skipruntime-deps)
6-
LLVM_VERSION=15
6+
LLVM_VERSION=20
77
PRIORITY=101
88

99
usage() {

skiplang/compiler/src/compile.sk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ fun runShell(args: Array<String>, verbose: Bool = false): void {
173173
}
174174

175175
fun ensureCompatibleLLVMVersion(): void {
176-
kLLVMVersion = "15.";
176+
kLLVMVersion = "20.";
177177

178178
p = System.subprocess(Array["llvm-config", "--version"]).fromSuccess();
179179
if (!p.success()) {

0 commit comments

Comments
 (0)