File tree 3 files changed +8
-2
lines changed 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11
11
in recurseIntoAttrs {
12
12
meta . disabled = stdenv . hostPlatform . isGhcjs
13
13
# Failed to lookup symbol: __aarch64_swp8_acq_rel
14
- || ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 ) ;
14
+ || ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
15
+ # unhandled ELF relocation(Rel) type 10
16
+ || ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 ) ;
15
17
ifdInputs = {
16
18
inherit ( project ) plan-nix ;
17
19
} ;
Original file line number Diff line number Diff line change @@ -24,7 +24,9 @@ in recurseIntoAttrs {
24
24
} ;
25
25
26
26
meta . disabled = stdenv . buildPlatform != stdenv . hostPlatform && stdenv . hostPlatform . isAarch64
27
- || builtins . elem compiler-nix-name [ "ghc91320241204" ] ;
27
+ || builtins . elem compiler-nix-name [ "ghc91320241204" ]
28
+ # unhandled ELF relocation(Rel) type 10
29
+ || ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 ) ;
28
30
29
31
build = packages . js-template-haskell . components . library ;
30
32
check = packages . js-template-haskell . checks . test ;
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ in recurseIntoAttrs {
26
26
|| ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
27
27
# We have been unable to get windows cross compilation of th-orphans to work for GHC 8.10 using the latest nixpkgs
28
28
|| ( compiler-nix-name == "ghc8107" && stdenv . hostPlatform . isWindows )
29
+ # unhandled ELF relocation(Rel) type 10
30
+ || ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 )
29
31
;
30
32
31
33
ifdInputs = {
You can’t perform that action at this time.
0 commit comments