File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ 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
+ # On for aarch64 cross compile on GHC 9.8.4 this test is fails sometimes for non profiled builds
26
+ # (and always for the profiled builds).
27
+ # This may be related to the memory allocation changes made in 9.8.4 that
28
+ # replace the pool allocator patches we used in earlier versions.
29
+ || ( compiler-nix-name == "ghc984" && stdenv . buildPlatform . isx86_64 && stdenv . hostPlatform . isAarch64 )
25
30
# Failed to lookup symbol: __aarch64_swp8_acq_rel
26
31
|| ( builtins . elem compiler-nix-name [ "ghc947" "ghc948" ] && haskellLib . isCrossHost && stdenv . hostPlatform . isAarch64 )
27
32
# We have been unable to get windows cross compilation of th-orphans to work for GHC 8.10 using the latest nixpkgs
You can’t perform that action at this time.
0 commit comments