pkgs/stdenv/booter.nix: Add comment explaining hasCC trickery

This commit is contained in:
John Ericson 2019-12-30 18:09:45 -05:00
parent d8dd301412
commit 6078f094c6
1 changed files with 5 additions and 1 deletions

View File

@ -126,7 +126,11 @@ stageFuns: let
if buildPackages.stdenv.cc.isClang or false
then buildPackages.clang
else buildPackages.gcc
else buildPackages.stdenv.cc;
else
# This will blow up if anything uses it, but that's OK. The `if
# buildPackages.stdenv.cc.isClang then ... else ...` would blow up
# everything, so we make sure to avoid that.
buildPackages.stdenv.cc;
};
in dfold folder postStage (_: {}) withAllowCustomOverrides