Merge pull request #286486 from wegank/sumokoin-fix

sumokoin: fix build with gcc 13
This commit is contained in:
Weijia Wang 2024-02-06 21:31:33 +01:00 committed by GitHub
commit 98584c90d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,6 +43,8 @@ stdenv.mkDerivation rec {
zeromq
];
env.CXXFLAGS = "-include cstdint";
# cc1: error: '-Wformat-security' ignored without '-Wformat' [-Werror=format-security]
hardeningDisable = [ "format" ];