Browse Source

Merge pull request #4982 from 4teapo/master

Use LLVM 20 in shell.nix
gingerBill 5 months ago
parent
commit
07cec670e3
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; [
   nativeBuildInputs = with pkgs; [
     git
     git
     which
     which
-    clang_17
-    llvmPackages_17.llvm
-    llvmPackages_17.bintools
+    clang_20
+    llvmPackages_20.llvm
+    llvmPackages_20.bintools
   ];
   ];
   shellHook="CXX=clang++";
   shellHook="CXX=clang++";
 }
 }