makeBinaryWrapper: Switch from stdenv.cc.cc to stdenv.cc
"${stdenv.cc.cc}/bin" does not contain a cc-symlink, since this is the unwrapped version of the compiler - however "${stdenv.cc}/bin" does.
This commit is contained in:
parent
91ca3ab15f
commit
3104da4085
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ with pkgs;
|
|||
makeSetupHook { deps = [ dieHook ]; } script;
|
||||
in
|
||||
lib.makeOverridable f {
|
||||
cc = stdenv.cc.cc;
|
||||
cc = stdenv.cc;
|
||||
sanitizers = [ "undefined" "address" ];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue