aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorteapo <75266237+4teapo@users.noreply.github.com>2025-03-28 18:38:08 +0100
committerteapo <75266237+4teapo@users.noreply.github.com>2025-03-28 18:38:08 +0100
commit73c3e60ce5a04370c3a7d0a9704083605b58f342 (patch)
tree2650900345bf21e08567e4f5578380b3a5d70979
parenta9d073e0bb9993b23fb7f5ee652005bfd73a4de4 (diff)
Use LLVM 20 in shell.nix
-rw-r--r--shell.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/shell.nix b/shell.nix
index 64e585dd3..33e90018c 100644
--- a/shell.nix
+++ b/shell.nix
@@ -4,9 +4,9 @@ pkgs.mkShell {
nativeBuildInputs = with pkgs; [
git
which
- clang_18
- llvmPackages_18.llvm
- llvmPackages_18.bintools
+ clang_20
+ llvmPackages_20.llvm
+ llvmPackages_20.bintools
];
shellHook="CXX=clang++";
}