llvmPackages_rocm: add big-parallel for clang-unwrapped, clang-tools-extra, and mlir

This commit is contained in:
Madoura 2023-09-30 12:13:59 -05:00
parent d2bc96e5b5
commit 95768ef3b6
No known key found for this signature in database
GPG key ID: 1B9BB76A2B71922D

View file

@ -72,6 +72,8 @@ let
extraPostInstall = ''
mv bin/clang-tblgen $out/bin
'';
requiredSystemFeatures = [ "big-parallel" ];
};
lld = callPackage ./llvm.nix rec {
@ -437,6 +439,8 @@ in rec {
# Cleanup empty directories
find $out -type d -empty -delete
'';
requiredSystemFeatures = [ "big-parallel" ];
};
# Projects
@ -549,6 +553,7 @@ in rec {
'';
checkTargets = [ "check-${targetName}" ];
requiredSystemFeatures = [ "big-parallel" ];
};
polly = callPackage ./llvm.nix rec {