darwin: use system dyld
see https://github.com/NixOS/nixpkgs/issues/9432
This commit is contained in:
parent
e4644a5b58
commit
80e09678f7
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ stdenv.mkDerivation {
|
|||
if stdenv.isArm then "ld-linux*.so.3" else
|
||||
if stdenv.system == "powerpc-linux" then "ld.so.1" else
|
||||
if stdenv.system == "mips64el-linux" then "ld.so.1" else
|
||||
if stdenv.system == "x86_64-darwin" then "${dyld}/lib/dyld" else
|
||||
if stdenv.system == "x86_64-darwin" then "/usr/lib/dyld" else
|
||||
abort "Don't know the name of the dynamic linker for this platform.")
|
||||
else "";
|
||||
|
||||
|
|
Loading…
Reference in a new issue