Skip to content

Commit

Permalink
codegen(llvm): update to LLVM 18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
feds01 committed Jun 21, 2024
1 parent 893c9d3 commit 39a27ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Run tests
run: "LLVM_SYS_180_PREFIX=$LLVM_PATH cargo test --all --verbose"
run: "LLVM_SYS_181f_PREFIX=$LLVM_PATH cargo test --all --verbose"

- name: Run clippy
run: "LLVM_SYS_180_PREFIX=$LLVM_PATH cargo clippy --all -- -D warnings"
run: "LLVM_SYS_181_PREFIX=$LLVM_PATH cargo clippy --all -- -D warnings"

- name: Check formatting
run: "cargo fmt --all -- --check"
4 changes: 2 additions & 2 deletions compiler/hash-codegen-llvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ edition = "2021"
doctest = false

[dependencies]
llvm-sys = "180.0.0"
inkwell = { git = "https://github.com/hash-org/inkwell.git", branch="master", features = ["llvm18-0"] }
llvm-sys = "181.1.0"
inkwell = { git = "https://github.com/hash-org/inkwell.git", branch="llvm-18.1", features = ["llvm18-1"] }

hash-attrs = { path = "../hash-attrs" }
hash-codegen = {path = "../hash-codegen" }
Expand Down

0 comments on commit 39a27ee

Please sign in to comment.