diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-30 17:55:11 -0700 | 
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-09-30 17:55:11 -0700 | 
| commit | 818bcb7a7f8bd6c496c42e953ecc474dedd0096c (patch) | |
| tree | 6c6769ccdcae47c1246d83778958de5ffcb2ee48 | |
| parent | 6742ba8df7969ccc3fc7a2720269fdad4cf483da (diff) | |
| download | cryptography-818bcb7a7f8bd6c496c42e953ecc474dedd0096c.tar.gz cryptography-818bcb7a7f8bd6c496c42e953ecc474dedd0096c.tar.bz2 cryptography-818bcb7a7f8bd6c496c42e953ecc474dedd0096c.zip  | |
Everything but shut some off
| -rw-r--r-- | cryptography/bindings/openssl/api.py | 9 | 
1 files changed, 8 insertions, 1 deletions
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.  | 
