From f11d0b0601e5312af15bbbb7521119a020456876 Mon Sep 17 00:00:00 2001 From: Jonas Meurer Date: Tue, 14 May 2024 10:52:59 +0200 Subject: [PATCH] cctag: fix failing tests with gcc13 Since GCC13 the package does not build correctly, causing the tests to fail. This was not the case with GCC12. Instead of building it with an older version of GCC, we can build and test it successfully with Clang. --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a7aa15fb1b272bc..b32c2e61da9e14e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20321,6 +20321,7 @@ with pkgs; ccrtp = callPackage ../development/libraries/ccrtp { }; cctag = callPackage ../development/libraries/cctag { + stdenv = clangStdenv; tbb = tbb_2021_11; };