diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 09:35:41 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 09:35:41 +0000 |
commit | 441d83f0c2c2552c8cfcbab168bf85fd127c20b9 (patch) | |
tree | 73557298f5b934da52c4dae085be0d16766205cc /project | |
parent | 83ec897e144c8c1c59c3b487c9b85e898afb1af0 (diff) | |
download | sbpython3-441d83f0c2c2552c8cfcbab168bf85fd127c20b9.tar.bz2 sbpython3-441d83f0c2c2552c8cfcbab168bf85fd127c20b9.tar.xz |
project: hoppla.sh: also filter out -Wno-implicit-fallthrough.
Diffstat (limited to 'project')
-rwxr-xr-x | project/hoppla.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/project/hoppla.sh b/project/hoppla.sh index cd53fc7..7adfadc 100755 --- a/project/hoppla.sh +++ b/project/hoppla.sh @@ -97,6 +97,7 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-missing-field-initializers@@g' \ -e 's@-Wno-unused-result@@g' \ -e 's@-Wno-unused-parameter@@g' \ + -e 's@-Wno-implicit-fallthrough@@g' \ -e 's/ */ /g' \ | sort > cccore.log @@ -115,6 +116,7 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-missing-field-initializers@@g' \ -e 's@-Wno-unused-result@@g' \ -e 's@-Wno-unused-parameter@@g' \ + -e 's@-Wno-implicit-fallthrough@@g' \ -e 's/ */ /g' \ | sort > ccext.log |