build-scripts/build_llvm.py: bump to llvm 19

cf. https://github.com/bytecodealliance/wasm-micro-runtime/issues/4210

why 19, 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
while we can use different versions for different targets,
it's nicer to use the same version everywhere when possible.
This commit is contained in:
YAMAMOTO Takashi 2025-04-25 10:28:35 +09:00
parent 0e8b57d8a8
commit 3f3a214411

View File

@ -294,17 +294,17 @@ def main():
"arc": {
"repo": "https://github.com/llvm/llvm-project.git",
"repo_ssh": "git@github.com:llvm/llvm-project.git",
"branch": "release/15.x",
"branch": "release/19.x",
},
"xtensa": {
"repo": "https://github.com/espressif/llvm-project.git",
"repo_ssh": "git@github.com:espressif/llvm-project.git",
"branch": "xtensa_release_17.0.1",
"branch": "xtensa_release_19.1.2",
},
"default": {
"repo": "https://github.com/llvm/llvm-project.git",
"repo_ssh": "git@github.com:llvm/llvm-project.git",
"branch": "release/15.x",
"branch": "release/19.x",
},
}