mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 03:37:26 +00:00
llvmPackages_rocm.llvm: build on big-parallel
All other LLVM packages run on big-parallel, so we should be consistent when building the ROCm fork.
This commit is contained in:
parent
5d74e13d2c
commit
0aee301acb
@ -29,6 +29,7 @@ let
|
||||
# Stage 1
|
||||
# Base
|
||||
llvm = callPackage ./llvm.nix {
|
||||
requiredSystemFeatures = [ "big-parallel" ];
|
||||
isBroken = stdenv.isAarch64; # https://github.com/RadeonOpenCompute/ROCm/issues/1831#issuecomment-1278205344
|
||||
};
|
||||
|
||||
|
@ -39,6 +39,7 @@
|
||||
)
|
||||
)]
|
||||
, extraPostInstall ? ""
|
||||
, requiredSystemFeatures ? [ ]
|
||||
, extraLicenses ? [ ]
|
||||
, isBroken ? false
|
||||
}:
|
||||
@ -158,6 +159,8 @@ in stdenv.mkDerivation (finalAttrs: {
|
||||
};
|
||||
};
|
||||
|
||||
inherit requiredSystemFeatures;
|
||||
|
||||
meta = with lib; {
|
||||
description = "ROCm fork of the LLVM compiler infrastructure";
|
||||
homepage = "https://github.com/RadeonOpenCompute/llvm-project";
|
||||
|
Loading…
Reference in New Issue
Block a user