Skip to content

Commit 8b7a83a

Browse files
committed
build-scripts/build_llvm.py: bump to llvm 18
cf. bytecodealliance#4210 why not 20? because, as of writing this, 19 is the latest released version for the xtensa fork of llvm: https://github.com/espressif/llvm-project why not 19? because of a bug in the xtensa fork of llvm: espressif/llvm-project#112 while we can use different versions for different targets, it's nicer to use the same version everywhere when possible.
1 parent 0a8994a commit 8b7a83a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-scripts/build_llvm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,17 +294,17 @@ def main():
294294
"arc": {
295295
"repo": "https://github.com/llvm/llvm-project.git",
296296
"repo_ssh": "git@github.com:llvm/llvm-project.git",
297-
"branch": "release/15.x",
297+
"branch": "release/18.x",
298298
},
299299
"xtensa": {
300300
"repo": "https://github.com/espressif/llvm-project.git",
301301
"repo_ssh": "git@github.com:espressif/llvm-project.git",
302-
"branch": "xtensa_release_17.0.1",
302+
"branch": "xtensa_release_18.1.2",
303303
},
304304
"default": {
305305
"repo": "https://github.com/llvm/llvm-project.git",
306306
"repo_ssh": "git@github.com:llvm/llvm-project.git",
307-
"branch": "release/15.x",
307+
"branch": "release/18.x",
308308
},
309309
}
310310

0 commit comments

Comments
 (0)