boehm-gc: Disable gctest check on RISC-V

This commit is contained in:
Mikael 2024-09-01 22:12:36 +02:00
parent 113a96d3eb
commit a94dd57ffc
Signed by: mikael
SSH key fingerprint: SHA256:21QyD2Meiot7jOUVitIR5YkGB/XuXdCvLW1hE6dsri0

View file

@ -23,6 +23,13 @@ in {
}; };
}; };
} // optionalAttrs hostPlatform.isRiscV64 ({ } // optionalAttrs hostPlatform.isRiscV64 ({
boehmgc = prev.boehmgc.overrideAttrs (prevAttrs: {
postPatch = prevAttrs.postPatch or "" + ''
sed -E -i '/^TESTS \+= gctest/d' \
tests/tests.am
'';
});
libuv = prev.libuv.overrideAttrs ({ libuv = prev.libuv.overrideAttrs ({
doCheck = false; doCheck = false;
}); });