From a52219710bd9032ddafd8000afdaf05927aaa6a6 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 30 Sep 2013 16:56:55 -0700 Subject: Different flags --- cryptography/bindings/openssl/api.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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() -- cgit v1.2.3