mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
69cf5181c3
The primary motivating example is openssl: Before the change full package build took 1m54s minutes. After the change full package build takes 59s. About a 2x speedup. The difference is visible because openssl builds hundreds of manpages spawning a perl process per manual in `install` phase. Such a workload is very easy to parallelize. Another example would be `autotools`+`libtool` based build system where install step requires relinking. The more binaries there are to relink the more gain it will be to do it in parallel. The change enables parallel installs by default only for buiilds that already have parallel builds enabled. There is a high chance those build systems already handle parallelism well but some packages will fail. Consistently propagated the enableParallelBuilding to: - cmake (enabled by default, similar to builds) - ninja (set parallelism explicitly, don't rely on default) - bmake (enable when requested) - scons (enable when requested) - meson (set parallelism explicitly, don't rely on default) - waf (set parallelism explicitly, don't rely on default) - qmake-4/5/6 (enable by default, similar to builds) - xorg (always enable, similar to builds)
43 lines
1 KiB
Bash
43 lines
1 KiB
Bash
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
# This is the builder for all X.org components.
|
|
source $stdenv/setup
|
|
|
|
|
|
# After installation, automatically add all "Requires" fields in the
|
|
# pkgconfig files (*.pc) to the propagated build inputs.
|
|
origPostInstall=$postInstall
|
|
postInstall() {
|
|
if test -n "$origPostInstall"; then eval "$origPostInstall"; fi
|
|
|
|
local r p requires
|
|
set +o pipefail
|
|
requires=$(grep "Requires:" ${!outputDev}/lib/pkgconfig/*.pc | \
|
|
sed "s/Requires://" | sed "s/,/ /g")
|
|
set -o pipefail
|
|
|
|
echo "propagating requisites $requires"
|
|
|
|
for r in $requires; do
|
|
for p in "${pkgsHostHost[@]}" "${pkgsHostTarget[@]}"; do
|
|
if test -e $p/lib/pkgconfig/$r.pc; then
|
|
echo " found requisite $r in $p"
|
|
propagatedBuildInputs+=" $p"
|
|
fi
|
|
done
|
|
done
|
|
}
|
|
|
|
|
|
installFlags="appdefaultdir=$out/share/X11/app-defaults $installFlags"
|
|
|
|
|
|
if test -n "$x11BuildHook"; then
|
|
source $x11BuildHook
|
|
fi
|
|
|
|
|
|
enableParallelBuilding=1
|
|
enableParallelInstalling=1
|
|
|
|
genericBuild
|