diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-01 15:07:08 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-01-01 15:07:08 -0500 |
commit | b5804e02d72c1f80a6db494979c1b9533516b462 (patch) | |
tree | 7a4d5847046c25409237dfbc66a4661f6829d3d2 /src/_cffi_src/build_constant_time.py | |
parent | 7105e7f0132618798d5decac1b778ddb5f560a39 (diff) | |
parent | 33980bbb55919054bd1e0d641b8f28135a22472c (diff) | |
download | cryptography-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/build_constant_time.py')
-rw-r--r-- | src/_cffi_src/build_constant_time.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/_cffi_src/build_constant_time.py b/src/_cffi_src/build_constant_time.py index 6d9a8f54..7a11f7b5 100644 --- a/src/_cffi_src/build_constant_time.py +++ b/src/_cffi_src/build_constant_time.py @@ -5,9 +5,8 @@ from __future__ import absolute_import, division, print_function import os -import sys -from _cffi_src.utils import build_ffi, extra_link_args +from _cffi_src.utils import build_ffi, compiler_type, extra_link_args with open(os.path.join( @@ -24,5 +23,5 @@ ffi = build_ffi( module_name="_constant_time", cdef_source=types, verify_source=functions, - extra_link_args=extra_link_args(sys.platform), + extra_link_args=extra_link_args(compiler_type()), ) |