mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
configure: inhibit the implicit-fallthrough warning on gcc-12
... since it no longer acknowledges the comment markup we use for that purpose. Reported-by: Younes El-karama Fixes #7295 Closes #7307
This commit is contained in:
parent
278b46751e
commit
b5a434f7f0
@ -1033,7 +1033,10 @@ AC_DEFUN([CURL_SET_COMPILER_WARNING_OPTS], [
|
||||
CURL_ADD_COMPILER_WARNINGS([tmp_CFLAGS], [alloc-zero])
|
||||
tmp_CFLAGS="$tmp_CFLAGS -Wformat-overflow=2"
|
||||
tmp_CFLAGS="$tmp_CFLAGS -Wformat-truncation=2"
|
||||
tmp_CFLAGS="$tmp_CFLAGS -Wimplicit-fallthrough=4"
|
||||
if test "$compiler_num" -lt "1200"; then
|
||||
dnl gcc 12 doesn't acknowledge our comment markups
|
||||
tmp_CFLAGS="$tmp_CFLAGS -Wimplicit-fallthrough=4"
|
||||
fi
|
||||
fi
|
||||
#
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user