aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-09-30 16:58:52 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-09-30 16:58:52 -0700
commit3727881c4d69201dc51803c40b01efe321df3bd7 (patch)
tree54e7b4c79b89d334410c2b6e739dad010d5825ff
parenta52219710bd9032ddafd8000afdaf05927aaa6a6 (diff)
downloadcryptography-3727881c4d69201dc51803c40b01efe321df3bd7.tar.gz
cryptography-3727881c4d69201dc51803c40b01efe321df3bd7.tar.bz2
cryptography-3727881c4d69201dc51803c40b01efe321df3bd7.zip
Some comments
-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"
]
)