aws-sdk-cpp: ignore openssl 3 deprecation warnings

main
Sandro Jäckel 2 years ago
parent 08c6aef915
commit f5f1d11b9e
No known key found for this signature in database
GPG Key ID: B1763F8651144063
  1. 5
      pkgs/development/libraries/aws-sdk-cpp/default.nix

@ -99,6 +99,11 @@ stdenv.mkDerivation rec {
] ++ lib.optional (apis != ["*"])
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";
NIX_CFLAGS_COMPILE = [
# openssl 3 generates several deprecation warnings
"-Wno-error=deprecated-declarations"
];
# aws-cpp-sdk-core-tests/aws/client/AWSClientTest.cpp
# seem to have a datarace
enableParallelChecking = false;

Loading…
Cancel
Save