aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/compilers/llvm/8
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/development/compilers/llvm/8
parent8c880d943410e203985dbc05d0dbe19d494a684d (diff)
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/development/compilers/llvm/8')
-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 43615fc675dc..61ed24ba842e 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/";