aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/bindings/openssl/api.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index 2850f24a..49edc92e 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -43,7 +43,12 @@ class API(object):
source="\n".join(includes),
libraries=["crypto"],
extra_compile_args=[
- "-Qunused-arguments", "-Wno-deprecated",
+ # Disabled because on stock OS X there is an "-mno-fused-madd"
+ # which is ignored.
+ "-Qunused-arguments",
+ # All of OpenSSL is deprecated on OS X, so we ignore this.
+ "-Wno-deprecated",
+ # Be very loud about everything else
"-Wall", "-Werror", "-Wpedantic", "-Wconversion"
]
)