File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,16 @@ in recurseIntoAttrs {
22
22
meta . disabled = stdenv . hostPlatform . isGhcjs
23
23
# On aarch64 this test also breaks form musl builds (including cross compiles on x86_64-linux)
24
24
|| ( stdenv . hostPlatform . isAarch64 && stdenv . hostPlatform . isMusl )
25
- # Failed to lookup symbol: __aarch64_swp8_acq_rel
26
- || ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
27
25
# Not sure why this is failing with a seg fault
28
26
|| ( builtins . elem compiler-nix-name [ "ghc9102" ] && stdenv . hostPlatform . isAndroid && stdenv . hostPlatform . isAarch32 )
29
- # We have been unable to get windows cross compilation of th-orphans to work for GHC 8.10 using the latest nixpkgs
30
- || ( compiler-nix-name == "ghc8107" && stdenv . hostPlatform . isWindows )
31
27
# unhandled ELF relocation(Rel) type 10
32
28
|| ( stdenv . hostPlatform . isMusl && stdenv . hostPlatform . isx86_32 )
29
+
30
+ ## Old GHC versions (TODO remove)
31
+ # Failed to lookup symbol: __aarch64_swp8_acq_rel
32
+ || ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
33
+ # We have been unable to get windows cross compilation of th-orphans to work for GHC 8.10 using the latest nixpkgs
34
+ || ( compiler-nix-name == "ghc8107" && stdenv . hostPlatform . isWindows )
33
35
;
34
36
35
37
ifdInputs = {
You can’t perform that action at this time.
0 commit comments