darwin.binutils: link unprefixed ld64 with prefix in binutils

ld64 is a cross-linker by default (albeit only to Darwin platforms), so
it is built without a prefix in the ld64 package. The linker in the
binutils package is expected to be prefixed, so adjust the build command
accordingly to make sure the linker is still linked correctly.

+1 -1
+1 -1
pkgs/os-specific/darwin/binutils/default.nix
··· 106 106 makeWrapper "${lib.getBin clang-unwrapped}/bin/clang" "$out/bin/${targetPrefix}as" \ 107 107 --add-flags "-x assembler -integrated-as -c" 108 108 109 - ln -s '${lib.getBin ld64}/bin/${targetPrefix}ld' "$out/bin/${targetPrefix}ld" 109 + ln -s '${lib.getBin ld64}/bin/ld' "$out/bin/${targetPrefix}ld" 110 110 ${linkManPages (lib.getMan ld64) "ld" "ld"} 111 111 ${linkManPages (lib.getMan ld64) "ld-classic" "ld-classic"} 112 112 ${linkManPages (lib.getMan ld64) "ld64" "ld64"}