about summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2023-03-10 07:10:23 +0100
committerEmily Trau <emily@downunderctf.com>2023-12-03 21:44:27 +1100
commit574d1e47ea9fa29f6a6ad3f2222d982aa48af940 (patch)
tree12cabd6a3850bb3a5638a0e3faae6d37faa16763 /pkgs/development/misc
parent48d38a834f33f45ab5cf6fd67b177b68cfaf6723 (diff)
avrlibc: enable parallel builds
this cuts about 80% off the build time with no apparent negative effects.
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/avr/libc/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/misc/avr/libc/default.nix b/pkgs/development/misc/avr/libc/default.nix
index ac9da31fcc0f8..9b3ac75d11046 100644
--- a/pkgs/development/misc/avr/libc/default.nix
+++ b/pkgs/development/misc/avr/libc/default.nix
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
   stripDebugList = [ "bin" ];
   dontPatchELF = true;
 
+  enableParallelBuilding = true;
+
   passthru = {
     incdir = "/avr/include";
   };