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 {
2222 meta . disabled = stdenv . hostPlatform . isGhcjs
2323 # On aarch64 this test also breaks form musl builds (including cross compiles on x86_64-linux)
2424 || ( 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 )
2725 # Not sure why this is failing with a seg fault
2826 || ( 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 )
3127 # unhandled ELF relocation(Rel) type 10
3228 || ( 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 )
3335 ;
3436
3537 ifdInputs = {
You can’t perform that action at this time.
0 commit comments