From 67bf779b684257306fab2fd09ca646e43c2adcbf Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Fri, 21 Apr 2023 13:51:46 -0700 Subject: [PATCH] sdcc: enableParallelBuilding = true This is quite a large compile; we should use more than one core to do it. --- pkgs/development/compilers/sdcc/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/compilers/sdcc/default.nix b/pkgs/development/compilers/sdcc/default.nix index 584c0e7a6604..5e5a0bee51fc 100644 --- a/pkgs/development/compilers/sdcc/default.nix +++ b/pkgs/development/compilers/sdcc/default.nix @@ -15,6 +15,8 @@ stdenv.mkDerivation rec { sha256 = "sha256-tJuuHSO81gV6gsT/5WE/nNDLz9HpQOnYTEv+nfCowFM="; }; + enableParallelBuilding = true; + buildInputs = [ boost gputils texinfo zlib ]; nativeBuildInputs = [ autoconf bison flex ];