From 818bcb7a7f8bd6c496c42e953ecc474dedd0096c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 30 Sep 2013 17:55:11 -0700 Subject: Everything but shut some off --- cryptography/bindings/openssl/api.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py index 1bb1f65c..1dfae28d 100644 --- a/cryptography/bindings/openssl/api.py +++ b/cryptography/bindings/openssl/api.py @@ -41,7 +41,14 @@ class API(object): extra_compile_args = [ # Be very loud about everything else - "-Wall", "-Werror", "-Wconversion" + "-Wall", "-Werror", "-Weverything", + + "-Wno-unused-parameter", + "-Wno-unused-macros", + "-Wno-missing-prototypes", + "-Wno-missing-field-initializers", + "-Wno-unreachable-code", + "-Wno-padded", ] if sys.platform == "darwin": # All of OpenSSL is deprecated on OS X, so we ignore this. -- cgit v1.2.3