cudaPackages.nccl-tests: 2.13.11 -> 2.14.1

+ fix build with GCC14
This commit is contained in:
Pavol Rusnak
2025-03-26 19:17:18 +01:00
parent e1f0c8be80
commit c08e2981ca
@@ -25,15 +25,20 @@ in
backendStdenv.mkDerivation (finalAttrs: {
pname = "nccl-tests";
version = "2.13.11";
version = "2.14.1";
src = fetchFromGitHub {
owner = "NVIDIA";
repo = "nccl-tests";
rev = "v${finalAttrs.version}";
hash = "sha256-HHshp4fYW+dlyL9FZRxX761UCFR/pOBKNHfVme2TfJg=";
hash = "sha256-PntD5seMq7s0x4hOO/wBDQdElhKCY6mFrTf073mf7zM=";
};
postPatch = ''
# fix build failure with GCC14
substituteInPlace src/Makefile --replace-fail "-std=c++11" "-std=c++14"
'';
strictDeps = true;
nativeBuildInputs =