From 49551b6febb1234257753860da75f670efaee545 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sun, 17 Mar 2019 08:28:56 -0400 Subject: [PATCH] llvm: mark as big-parallel Big parallel jobs get many more (45) aarch64 cores than standard builds. --- pkgs/development/compilers/llvm/5/llvm.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/llvm/5/llvm.nix b/pkgs/development/compilers/llvm/5/llvm.nix index 9e181a1202b..41dc20ec4fe 100644 --- a/pkgs/development/compilers/llvm/5/llvm.nix +++ b/pkgs/development/compilers/llvm/5/llvm.nix @@ -131,6 +131,7 @@ in stdenv.mkDerivation (rec { passthru.src = src; + requiredSystemFeatures = [ "big-parallel" ]; meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/;