darwin.binutils: fix wrapper of `as` when cross-compiling to aarch64-darwin (#134097)

launchpad/nixpkgs/master
Jasper 3 years ago committed by GitHub
parent 5919a42546
commit 00037f7403
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/os-specific/darwin/binutils/default.nix

@ -56,8 +56,8 @@ stdenv.mkDerivation {
# and using clang directly here is a better option than relying on cctools.
# On x86_64-darwin the Clang version is too old to support this mode.
+ lib.optionalString stdenv.isAarch64 ''
rm $out/bin/as
makeWrapper "${clang-unwrapped}/bin/clang" "$out/bin/as" \
rm $out/bin/${targetPrefix}as
makeWrapper "${clang-unwrapped}/bin/clang" "$out/bin/${targetPrefix}as" \
--add-flags "-x assembler -integrated-as -c"
'';

Loading…
Cancel
Save