From 3727881c4d69201dc51803c40b01efe321df3bd7 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 30 Sep 2013 16:58:52 -0700 Subject: Some comments --- cryptography/bindings/openssl/api.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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" ] ) -- cgit v1.2.3