aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2020-01-13 21:44:35 +0100
committerEelco Dolstra <edolstra@gmail.com>2020-01-13 21:44:35 +0100
commitc86c71c2b1feac19f3363662cf20abc88ab47e03 (patch)
tree3a3163258668e63ed9b73bf2fd056b618396ba21
parent835e541144272853f1c6e5e6f342d19926ba4e6f (diff)
Test PRECOMPILE_HEADERS=0
-rw-r--r--release.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/release.nix b/release.nix
index 287b5294a..db2b5ef05 100644
--- a/release.nix
+++ b/release.nix
@@ -240,6 +240,8 @@ let
name = "nix-build";
src = tarball;
+ enableParallelBuilding = true;
+
buildInputs = buildDeps;
dontInstall = false;
@@ -252,6 +254,9 @@ let
# syntax-check generated dot files, it still requires some
# fonts. So provide those.
FONTCONFIG_FILE = texFunctions.fontsConf;
+
+ # To test building without precompiled headers.
+ makeFlagsArray = [ "PRECOMPILE_HEADERS=0" ];
};