nixpkgs/pkgs/development/tools/build-managers/ninja/setup-hook.sh
John Ericson b7f4bda282 treewide: *Phase(s)? variables are optional
If these aren't defined, the stdenv defaults are used in the `*Phase`
case, or no extra phases are done, in the `*Phases` case.
2019-11-01 14:44:44 -04:00

79 lines
1.7 KiB
Bash

ninjaBuildPhase() {
runHook preBuild
local buildCores=1
# Parallel building is enabled by default.
if [ "${enableParallelBuilding-1}" ]; then
buildCores="$NIX_BUILD_CORES"
fi
local flagsArray=(
-j$buildCores -l$NIX_BUILD_CORES
$ninjaFlags "${ninjaFlagsArray[@]}"
)
echoCmd 'build flags' "${flagsArray[@]}"
ninja "${flagsArray[@]}"
runHook postBuild
}
if [ -z "${dontUseNinjaBuild-}" -a -z "${buildPhase-}" ]; then
buildPhase=ninjaBuildPhase
fi
ninjaInstallPhase() {
runHook preInstall
# shellcheck disable=SC2086
local flagsArray=(
$ninjaFlags "${ninjaFlagsArray[@]}"
${installTargets:-install}
)
echoCmd 'install flags' "${flagsArray[@]}"
ninja "${flagsArray[@]}"
runHook postInstall
}
if [ -z "${dontUseNinjaInstall-}" -a -z "${installPhase-}" ]; then
installPhase=ninjaInstallPhase
fi
ninjaCheckPhase() {
runHook preCheck
if [ -z "${checkTarget:-}" ]; then
if ninja -t query test >/dev/null 2>&1; then
checkTarget=test
fi
fi
if [ -z "${checkTarget:-}" ]; then
echo "no test target found in ninja, doing nothing"
else
local buildCores=1
if [ "${enableParallelChecking-1}" ]; then
buildCores="$NIX_BUILD_CORES"
fi
local flagsArray=(
-j$buildCores -l$NIX_BUILD_CORES
$ninjaFlags "${ninjaFlagsArray[@]}"
$checkTarget
)
echoCmd 'check flags' "${flagsArray[@]}"
ninja "${flagsArray[@]}"
fi
runHook postCheck
}
if [ -z "${dontUseNinjaCheck-}" -a -z "${checkPhase-}" ]; then
checkPhase=ninjaCheckPhase
fi