Skip to content

Commit

Permalink
Use LLVM 17 by default in flake (#4370)
Browse files Browse the repository at this point in the history
@ehildenb bumped into llvm/llvm-project#60972
again when [updating KEVM
tests](https://github.com/runtimeverification/evm-semantics/pull/); at
the time I fixed the bug originally it wasn't yet in a released version
of LLVM we could use, and so we had to just ignore the issue.

Now that LLVM 17 is out, we should update K to use it by default where
possible; this PR does so for the Nix flake build of K.
  • Loading branch information
Baltoli authored May 21, 2024
1 parent 00467f9 commit da0aa7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
let
allOverlays = [
(_: _: {
llvm-version = 15;
llvm-version = 17;
llvm-backend-build-type = "Release";
})
llvm-backend.overlays.default
Expand Down

0 comments on commit da0aa7d

Please sign in to comment.