Merge pull request #145797 from trofi/sequential-dev86

dev86: explicitly disable build parallelism due to missing depends
This commit is contained in:
Jörg Thalheim
2021-11-14 08:14:16 +00:00
committed by GitHub
+9 -1
View File
@@ -13,9 +13,17 @@ stdenv.mkDerivation rec {
makeFlags = [ "PREFIX=$(out)" ];
# Parallel builds are not supported due to build process structure:
# tools are built sequentially in submakefiles and are reusing the
# same targets as dependencies. Building dependencies in parallel
# from different submakes is not synchronized and fails:
# make[3]: Entering directory '/build/dev86-0.16.21/libc'
# Unable to execute as86.
enableParallelBuilding = false;
meta = {
description = "Linux 8086 development environment";
homepage = "http://v3.sk/~lkundrak/dev86/";
homepage = "https://github.com/lkundrak/dev86";
platforms = lib.platforms.linux;
};
}