aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/utils.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-01-01 15:07:08 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-01-01 15:07:08 -0500
commitb5804e02d72c1f80a6db494979c1b9533516b462 (patch)
tree7a4d5847046c25409237dfbc66a4661f6829d3d2 /src/_cffi_src/utils.py
parent7105e7f0132618798d5decac1b778ddb5f560a39 (diff)
parent33980bbb55919054bd1e0d641b8f28135a22472c (diff)
downloadcryptography-b5804e02d72c1f80a6db494979c1b9533516b462.tar.gz
cryptography-b5804e02d72c1f80a6db494979c1b9533516b462.tar.bz2
cryptography-b5804e02d72c1f80a6db494979c1b9533516b462.zip
Merge pull request #2617 from reaperhulk/compiler-mingw-why-not
don't add the NXCOMPAT and DYNAMICBASE flags if the compiler isn't msvc
Diffstat (limited to 'src/_cffi_src/utils.py')
-rw-r--r--src/_cffi_src/utils.py27
1 files changed, 21 insertions, 6 deletions
diff --git a/src/_cffi_src/utils.py b/src/_cffi_src/utils.py
index 0b00353e..bdce2f3b 100644
--- a/src/_cffi_src/utils.py
+++ b/src/_cffi_src/utils.py
@@ -5,6 +5,8 @@
from __future__ import absolute_import, division, print_function
import sys
+from distutils.ccompiler import new_compiler
+from distutils.dist import Distribution
from cffi import FFI
@@ -79,10 +81,23 @@ def build_ffi(module_name, cdef_source, verify_source, libraries=[],
return ffi
-def extra_link_args(platform):
- if platform != "win32":
- return []
+def extra_link_args(compiler_type):
+ if compiler_type == 'msvc':
+ # Enable NX and ASLR for Windows builds on MSVC. These are enabled by
+ # default on Python 3.3+ but not on 2.x.
+ return ['/NXCOMPAT', '/DYNAMICBASE']
else:
- # Enable NX and ASLR for Windows builds. These are enabled by default
- # on Python 3.3+ but not on 2.x.
- return ["/NXCOMPAT", "/DYNAMICBASE"]
+ return []
+
+
+def compiler_type():
+ """
+ Gets the compiler type from distutils. On Windows with MSVC it will be
+ "msvc". On OS X and linux it is "unix".
+ """
+ dist = Distribution()
+ dist.parse_config_files()
+ cmd = dist.get_command_obj('build')
+ cmd.ensure_finalized()
+ compiler = new_compiler(compiler=cmd.compiler)
+ return compiler.compiler_type