Skip to content

Commit

Permalink
chore: Update from rc release of LLVM and llvm-sys to the stable one
Browse files Browse the repository at this point in the history
- Update `llvm-sys` from `191.0.0-rc1` to `191.0.0`.
- Update LLVM to the `rustc/19.1-2024-09-17` branch, which is based
  on the stable LLVM 19.1.0 release.
  - The mentioned branch in our LLVM fork contains a backport of
    llvm/llvm-project#107802, which is needed for our work on BTF
    relocations.
  • Loading branch information
vadorovsky committed Sep 27, 2024
1 parent f50f667 commit 0dc22d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- id: ls-remote
run: |
set -euxo pipefail
value=$(git ls-remote https://github.com/aya-rs/llvm-project.git refs/heads/rustc/19.1-2024-07-30 | cut -f1)
value=$(git ls-remote https://github.com/aya-rs/llvm-project.git refs/heads/rustc/19.1-2024-09-17 | cut -f1)
echo "sha=$value" >> "$GITHUB_OUTPUT"
- id: cache-key
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ar = { version = "0.9.0" }
aya-rustc-llvm-proxy = { version = "0.9.3", optional = true }
gimli = { version = "0.31.0" }
libc = { version = "0.2.158" }
llvm-sys = { features = ["disable-alltargets-init"], version = "191.0.0-rc1" }
llvm-sys = { features = ["disable-alltargets-init"], version = "191.0.0" }
log = { version = "0.4.22" }
thiserror = { version = "1.0.64" }
tracing = "0.1"
Expand Down

0 comments on commit 0dc22d1

Please sign in to comment.