From a14a861b441776e77b6a5e3d505fa51ce632f9ed Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 31 Dec 2015 20:18:38 -0600 Subject: don't add the NXCOMPAT and DYNAMICBASE flags if the compiler isn't msvc --- src/_cffi_src/build_openssl.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/_cffi_src/build_openssl.py') diff --git a/src/_cffi_src/build_openssl.py b/src/_cffi_src/build_openssl.py index c856e3d9..c47b3082 100644 --- a/src/_cffi_src/build_openssl.py +++ b/src/_cffi_src/build_openssl.py @@ -7,7 +7,9 @@ from __future__ import absolute_import, division, print_function import os import sys -from _cffi_src.utils import build_ffi_for_binding, extra_link_args +from _cffi_src.utils import ( + build_ffi_for_binding, compiler_type, extra_link_args +) def _get_openssl_libraries(platform): @@ -92,5 +94,5 @@ ffi = build_ffi_for_binding( pre_include=_OSX_PRE_INCLUDE, post_include=_OSX_POST_INCLUDE, libraries=_get_openssl_libraries(sys.platform), - extra_link_args=extra_link_args(sys.platform), + extra_link_args=extra_link_args(compiler_type()), ) -- cgit v1.2.3