We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb2ccd commit 14c3b26Copy full SHA for 14c3b26
1 file changed
pkgs/by-name/bo/boehmgc/package.nix
@@ -50,8 +50,9 @@ stdenv.mkDerivation (finalAttrs: {
50
"CFLAGS_EXTRA=-DNO_SOFT_VDB"
51
];
52
53
- # `gctest` fails under emulation on aarch64-darwin
54
- doCheck = !(stdenv.isDarwin && stdenv.isx86_64);
+ # `gctest` fails under x86_64 emulation on aarch64-darwin
+ # and also on aarch64-linux (qemu-user)
55
+ doCheck = !((stdenv.isDarwin && stdenv.isx86_64) || (stdenv.isLinux && stdenv.isAarch64));
56
57
enableParallelBuilding = true;
58
0 commit comments