Skip to content

Commit a33d676

Browse files
committed
Add comment
1 parent d2d9795 commit a33d676

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

test/th-dlls/default.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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 = {

0 commit comments

Comments
 (0)