aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/bindings/openssl/api.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index 5b58c775..2850f24a 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -42,7 +42,10 @@ class API(object):
self.lib = self.ffi.verify(
source="\n".join(includes),
libraries=["crypto"],
- extra_compile_args=["-Wall", "-Werror", "-Wpedantic", "-Wconversion"]
+ extra_compile_args=[
+ "-Qunused-arguments", "-Wno-deprecated",
+ "-Wall", "-Werror", "-Wpedantic", "-Wconversion"
+ ]
)
self.lib.OpenSSL_add_all_algorithms()