setup.py: don't enable c++0x for gcc

This commit is contained in:
Cosimo Lupo 2015-12-08 12:33:06 +00:00
parent c60f6d0d65
commit 8b2ca8efd9

View File

@ -70,12 +70,8 @@ class BuildExt(build_ext):
objects = []
for lang, sources in (("c", c_sources), ("c++", cxx_sources)):
if lang == "c++":
if platform.system() == "Darwin":
extra_args.extend(["-stdlib=libc++", "-mmacosx-version-min=10.7"])
if self.compiler.compiler_type in ["unix", "cygwin", "mingw32"]:
extra_args.append("-std=c++0x")
elif self.compiler.compiler_type == "msvc":
if lang == "c++":
if self.compiler.compiler_type == "msvc":
extra_args.append("/EHsc")
macros = ext.define_macros[:]