From a9d073e0bb9993b23fb7f5ee652005bfd73a4de4 Mon Sep 17 00:00:00 2001 From: teapo <75266237+4teapo@users.noreply.github.com> Date: Fri, 28 Mar 2025 18:31:23 +0100 Subject: [PATCH 1/2] Update shell.nix --- shell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell.nix b/shell.nix index 040c7696e..64e585dd3 100644 --- a/shell.nix +++ b/shell.nix @@ -4,9 +4,9 @@ pkgs.mkShell { nativeBuildInputs = with pkgs; [ git which - clang_17 - llvmPackages_17.llvm - llvmPackages_17.bintools + clang_18 + llvmPackages_18.llvm + llvmPackages_18.bintools ]; shellHook="CXX=clang++"; } From 73c3e60ce5a04370c3a7d0a9704083605b58f342 Mon Sep 17 00:00:00 2001 From: teapo <75266237+4teapo@users.noreply.github.com> Date: Fri, 28 Mar 2025 18:38:08 +0100 Subject: [PATCH 2/2] Use LLVM 20 in shell.nix --- shell.nix | 6 +++--- 1 file 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++"; }