diff options
author | Nate Ohlson <nohlson@purdue.edu> | 2024-06-26 10:21:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-26 10:21:21 (GMT) |
commit | ef28f6df42c916b058ed14275fb1ceba63ede28e (patch) | |
tree | 800f98289f178d2b9690cfce540809e67e86fe1b /configure.ac | |
parent | 90565972243f33dcd40d60a4f1474b97174fe304 (diff) | |
download | cpython-ef28f6df42c916b058ed14275fb1ceba63ede28e.zip cpython-ef28f6df42c916b058ed14275fb1ceba63ede28e.tar.gz cpython-ef28f6df42c916b058ed14275fb1ceba63ede28e.tar.bz2 |
gh-121040: Remove fallthrough warnings compiler option (gh-121041)
Remove fallthrough warnings
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 33dee0a..9b8ab70 100644 --- a/configure.ac +++ b/configure.ac @@ -2453,7 +2453,6 @@ AS_VAR_IF([with_strict_overflow], [yes], # Enable flags that warn and protect for potential security vulnerabilities. # These flags should be enabled by default for all builds. -AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough], [BASECFLAGS="$BASECFLAGS -Wimplicit-fallthrough"], [AC_MSG_WARN([-Wimplicit-fallthrough not supported])], [-Werror]) AX_CHECK_COMPILE_FLAG([-fstack-protector-strong], [BASECFLAGS="$BASECFLAGS -fstack-protector-strong"], [AC_MSG_WARN([-fstack-protector-strong not supported])], [-Werror]) AX_CHECK_COMPILE_FLAG([-Wtrampolines], [BASECFLAGS="$BASECFLAGS -Wtrampolines"], [AC_MSG_WARN([-Wtrampolines not supported])], [-Werror]) |