Browse Source

Use LLVM 20 in shell.nix

teapo 5 months ago
parent
commit
73c3e60ce5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      shell.nix

+ 3 - 3
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++";
 }