Skip to content

Commit a30b0a2

Browse files
committedMay 5, 2020
build: enable -Werror=gnu
Stop the build if a warning is emitted due to `-Wgnu` and `--enable-werror` has been used. As usual - this would help notice such a warning that is about to be introduced in new code. This is a followup to bitcoin#18088 build: ensure we aren't using GNU extensions
1 parent ec79b5f commit a30b0a2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎configure.ac

+1
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ if test "x$enable_werror" = "xyes"; then
338338
if test "x$CXXFLAG_WERROR" = "x"; then
339339
AC_MSG_ERROR("enable-werror set but -Werror is not usable")
340340
fi
341+
AX_CHECK_COMPILE_FLAG([-Werror=gnu],[ERROR_CXXFLAGS="$ERROR_CXXFLAGS -Werror=gnu"],,[[$CXXFLAG_WERROR]])
341342
AX_CHECK_COMPILE_FLAG([-Werror=vla],[ERROR_CXXFLAGS="$ERROR_CXXFLAGS -Werror=vla"],,[[$CXXFLAG_WERROR]])
342343
AX_CHECK_COMPILE_FLAG([-Werror=switch],[ERROR_CXXFLAGS="$ERROR_CXXFLAGS -Werror=switch"],,[[$CXXFLAG_WERROR]])
343344
AX_CHECK_COMPILE_FLAG([-Werror=thread-safety-analysis],[ERROR_CXXFLAGS="$ERROR_CXXFLAGS -Werror=thread-safety-analysis"],,[[$CXXFLAG_WERROR]])

0 commit comments

Comments
 (0)
Please sign in to comment.