We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6632906 commit a1093e4Copy full SHA for a1093e4
setup.py
@@ -1557,9 +1557,9 @@ class db_found(Exception): pass
1557
1558
cc = sysconfig.get_config_var('CC').split()[0]
1559
ret = os.system(
1560
- '"%s" -Werror -Wimplicit-fallthrough -E -xc /dev/null >/dev/null 2>&1' % cc)
+ '"%s" -Werror -Wno-unreachable-code -E -xc /dev/null >/dev/null 2>&1' % cc)
1561
if ret >> 8 == 0:
1562
- extra_compile_args.append('-Wno-implicit-fallthrough')
+ extra_compile_args.append('-Wno-unreachable-code')
1563
1564
exts.append(Extension('pyexpat',
1565
define_macros = define_macros,
0 commit comments