We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07319e0 commit 8aa793dCopy full SHA for 8aa793d
compiler/ghc/default.nix
@@ -67,8 +67,10 @@ let self =
67
, useLdGold ?
68
# might be better check to see if cc is clang/llvm?
69
# use gold as the linker on linux to improve link times
70
- # do not use it on musl due to a ld.gold bug. See: <https://sourceware.org/bugzilla/show_bug.cgi?id=22266>.
71
- (stdenv.targetPlatform.isLinux && !stdenv.targetPlatform.isAndroid && !stdenv.targetPlatform.isMusl)
+ # do not use ld.gold 2.3 with musl due to a ld.gold bug.
+ # See: <https://sourceware.org/bugzilla/show_bug.cgi?id=22266>.
72
+ # Note that this bug was resolved in 2017.
73
+ (stdenv.targetPlatform.isLinux && !stdenv.targetPlatform.isAndroid)
74
75
, ghc-version ? src-spec.version
76
, ghc-version-date ? null
0 commit comments