From: Stefan Krah Date: Mon, 12 Sep 2016 17:27:46 +0000 (+0200) Subject: Issue #23545: Adding -Wextra in setup.py is no longer necessary, since it X-Git-Tag: v3.6.0b2~238^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44abad14a3e069fe78c2d5e0a29285bc08031054;p=thirdparty%2FPython%2Fcpython.git Issue #23545: Adding -Wextra in setup.py is no longer necessary, since it is now part of the official flags. --- diff --git a/setup.py b/setup.py index d9acd9730843..85457355b05b 100644 --- a/setup.py +++ b/setup.py @@ -2153,15 +2153,6 @@ class PyBuildExt(build_ext): if not sysconfig.get_config_var('WITH_THREAD'): define_macros.append(('WITHOUT_THREADS', 1)) - # Increase warning level for gcc: - if 'gcc' in cc: - cmd = ("echo '' | %s -Wextra -Wno-missing-field-initializers -E - " - "> /dev/null 2>&1" % cc) - ret = os.system(cmd) - if ret >> 8 == 0: - extra_compile_args.extend(['-Wextra', - '-Wno-missing-field-initializers']) - # Uncomment for extra functionality: #define_macros.append(('EXTRA_FUNCTIONALITY', 1)) ext = Extension (