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 a88652e commit 3e24dd5Copy full SHA for 3e24dd5
1 file changed
setup.py
@@ -1562,9 +1562,9 @@ class db_found(Exception): pass
1562
1563
cc = sysconfig.get_config_var('CC').split()[0]
1564
ret = os.system(
1565
- '"%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)
1566
if ret >> 8 == 0:
1567
- extra_compile_args.append('-Wno-implicit-fallthrough')
+ extra_compile_args.append('-Wno-unreachable-code')
1568
1569
exts.append(Extension('pyexpat',
1570
define_macros = define_macros,
0 commit comments