diff options
author | midipix <writeonce@midipix.org> | 2021-06-15 17:49:47 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-15 17:51:15 +0000 |
commit | 11b5c3c26e5792d6c42b4259e09573be53f22817 (patch) | |
tree | 3952a6ddc04f1d761ea5e8f47f90e4fa35ae0811 /project | |
parent | e020009d7dfab004ae6b77353378f7067ceaeb54 (diff) | |
download | sbpython3-11b5c3c26e5792d6c42b4259e09573be53f22817.tar.bz2 sbpython3-11b5c3c26e5792d6c42b4259e09573be53f22817.tar.xz |
project: hoppla.sh: also filter out -Wno-cast-function-type and -Werror.
Diffstat (limited to 'project')
-rwxr-xr-x | project/hoppla.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project/hoppla.sh b/project/hoppla.sh index c738271..a28156a 100755 --- a/project/hoppla.sh +++ b/project/hoppla.sh @@ -98,6 +98,8 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-unused-result@@g' \ -e 's@-Wno-unused-parameter@@g' \ -e 's@-Wno-implicit-fallthrough@@g' \ + -e 's@-Wno-cast-function-type@@g' \ + -e 's@-Werror@@g' \ -e 's/ */ /g' \ -e 's/[ \t]*$//' \ | sort > cccore.log @@ -118,6 +120,8 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-unused-result@@g' \ -e 's@-Wno-unused-parameter@@g' \ -e 's@-Wno-implicit-fallthrough@@g' \ + -e 's@-Wno-cast-function-type@@g' \ + -e 's@-Werror@@g' \ -e 's/ */ /g' \ -e 's/[ \t]*$//' \ | sort > ccext.log |