summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2020-04-26 17:19:12 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-05-01 08:48:41 +0200
commit4b3c3e10a6245e551bf0862eaf7d0543367807c9 (patch)
treef6542c0ffdc7b74b9c85a6d9a4ac81c1eda2de23 /pkgs
parent8c880d943410e203985dbc05d0dbe19d494a684d (diff)
downloadnixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.tar
nixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.tar.gz
nixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.tar.bz2
nixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.tar.lz
nixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.tar.xz
nixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.tar.zst
nixpkgs-4b3c3e10a6245e551bf0862eaf7d0543367807c9.zip
llvm_8: mark as big-parallel
LLVM builds frequently time out on hydra at least on AArch64. Marking
big-parallel gives them more resources to finish quicker.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/llvm/8/llvm.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/8/llvm.nix b/pkgs/development/compilers/llvm/8/llvm.nix
index 43615fc675d..61ed24ba842 100644
--- a/pkgs/development/compilers/llvm/8/llvm.nix
+++ b/pkgs/development/compilers/llvm/8/llvm.nix
@@ -143,6 +143,7 @@ in stdenv.mkDerivation ({
 
   enableParallelBuilding = true;
 
+  requiredSystemFeatures = [ "big-parallel" ];
   meta = {
     description = "Collection of modular and reusable compiler and toolchain technologies";
     homepage    = "https://llvm.org/";