forked from mirrors/nixpkgs
darwin.binutils: fix wrapper of as
when cross-compiling to aarch64-darwin (#134097)
This commit is contained in:
parent
5919a42546
commit
00037f7403
|
@ -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…
Reference in a new issue