mvfst: disable pacret & trivialautovarinit hardening flags (#398219)

This commit is contained in:
Martin Weinelt 2025-05-03 19:10:42 +02:00 committed by GitHub
commit a6f2734737
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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))