Merge #189126: aws-sdk-cpp: ignore deprecation warnings

...into staging-next
This commit is contained in:
Vladimír Čunát 2022-09-01 08:25:39 +02:00
commit 0af9c4a8fa
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -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;