X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=configure;h=6e549cdc859d63346c8009a9fa6e1055827af5fe;hb=71144e676e710b37966f447ccd8d944813dfa6d1;hp=c4fffd998c93ea23a5d957c58f1f959a442d88f6;hpb=2401022342f650ac7d845a14c7b9bf1cd87cead6;p=fio.git diff --git a/configure b/configure index c4fffd99..6e549cdc 100755 --- a/configure +++ b/configure @@ -2312,6 +2312,20 @@ if compile_prog "" "" "__kernel_rwf_t"; then fi print_config "__kernel_rwf_t" "$__kernel_rwf_t" +########################################## +# check if gcc has -Wimplicit-fallthrough +fallthrough="no" +cat > $TMPC << EOF +int main(int argc, char **argv) +{ + return 0; +} +EOF +if compile_prog "-Wimplicit-fallthrough" "" "-Wimplicit-fallthrough"; then + fallthrough="yes" +fi +print_config "-Wimplicit-fallthrough" "$fallthrough" + ############################################################################# if test "$wordsize" = "64" ; then @@ -2583,6 +2597,9 @@ fi if test "$__kernel_rwf_t" = "yes"; then output_sym "CONFIG_HAVE_KERNEL_RWF_T" fi +if test "$fallthrough" = "yes"; then + CFLAGS="$CFLAGS -Wimplicit-fallthrough" +fi echo "LIBS+=$LIBS" >> $config_host_mak echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak