remove unnecessary compiler flags (see #237)

This commit is contained in:
Henning Peters 2016-01-28 19:12:00 +01:00
parent 9721502c81
commit ed3ebf9e43

View File

@ -74,12 +74,6 @@ compile_options = {'msvc' : ['/Ox', '/EHsc'],
link_options = {'msvc' : [],
'other' : []}
if sys.platform.startswith('darwin'):
compile_options['other'].append('-mmacosx-version-min=10.8')
compile_options['other'].append('-stdlib=libc++')
link_options['other'].append('-lc++')
class build_ext_options:
def build_options(self):
for e in self.extensions: