From e545956adc191ad02bb341cb6a3846abcdd6d722 Mon Sep 17 00:00:00 2001 From: midipix Date: Jun 15 2021 18:32:28 +0000 Subject: project: hoppla.sh: also filter out -Wno-unreachable-code. --- diff --git a/project/hoppla.sh b/project/hoppla.sh index a28156a..20d5498 100755 --- a/project/hoppla.sh +++ b/project/hoppla.sh @@ -99,6 +99,7 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-unused-parameter@@g' \ -e 's@-Wno-implicit-fallthrough@@g' \ -e 's@-Wno-cast-function-type@@g' \ + -e 's@-Wno-unreachable-code@@g' \ -e 's@-Werror@@g' \ -e 's/ */ /g' \ -e 's/[ \t]*$//' \ @@ -121,6 +122,7 @@ for py_ver in $py_base_ver $py_curr_ver; do -e 's@-Wno-unused-parameter@@g' \ -e 's@-Wno-implicit-fallthrough@@g' \ -e 's@-Wno-cast-function-type@@g' \ + -e 's@-Wno-unreachable-code@@g' \ -e 's@-Werror@@g' \ -e 's/ */ /g' \ -e 's/[ \t]*$//' \