mvfst: disable pacret & trivialautovarinit hardening flags

This commit is contained in:
Robert Scott
2025-04-13 11:48:34 +01:00
parent a78a226cec
commit f2fb712337
+7
View File
@@ -60,6 +60,13 @@ stdenv.mkDerivation (finalAttrs: {
gtest
];
hardeningDisable = [
# causes test failures on aarch64
"pacret"
# causes empty cmake files to be generated
"trivialautovarinit"
];
cmakeFlags =
[
(lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))