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 3cf57e1 commit e704578Copy full SHA for e704578
1 file changed
mypyc/build.py
@@ -603,6 +603,10 @@ def get_cflags(
603
"-Wno-unknown-warning-option",
604
"-Wno-unused-but-set-variable",
605
"-Wno-ignored-optimization-argument",
606
+ # GCC at -O3 false-positives on struct hack (items[1]) in vec buffers
607
+ "-Wno-array-bounds",
608
+ "-Wno-stringop-overread",
609
+ "-Wno-stringop-overflow",
610
# Disables C Preprocessor (cpp) warnings
611
# See https://github.com/mypyc/mypyc/issues/956
612
"-Wno-cpp",
0 commit comments