File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 362
362
# Sometimes we have to dispatch between the bintools wrapper and the unwrapped
363
363
# derivation for certain tools depending on the platform.
364
364
bintoolsFor = {
365
- # GHC needs install_name_tool on all darwin platforms. On aarch64-darwin it is
366
- # part of the bintools wrapper (due to codesigning requirements), but not on
367
- # x86_64-darwin.
368
- install_name_tool =
369
- if stdenv . targetPlatform . isAarch64
370
- then targetCC . bintools
371
- else targetCC . bintools . bintools ;
372
- # Same goes for strip.
365
+ # GHC needs install_name_tool on all darwin platforms.
366
+ install_name_tool = targetCC . bintools . bintools ;
373
367
strip =
374
368
# TODO(@sternenseemann): also use wrapper if linker == "bfd" or "gold"
375
369
if stdenv . targetPlatform . isAarch64
You can’t perform that action at this time.
0 commit comments