Instead of disabling gcc's deprecated declaration warnings about e.g.

std::auto_ptr in a whole bunch of individual Makefiles, make the warning
globally non-fatal instead.  This is similar to what was done to many
more non-fatal warnings from newer gcc versions.
This commit is contained in:
Dimitry Andric 2019-09-14 19:16:28 +00:00
parent d9ec4fa9ce
commit 23e2b4d9b1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/clang900-import/; revision=352335
6 changed files with 1 additions and 15 deletions

View File

@ -48,9 +48,6 @@ CFLAGS+= -I.
CFLAGS+= -DHAVE_CONFIG_H
# Silence warnings about std::auto_ptr usage
CWARNFLAGS+= -Wno-deprecated-declarations
SRCS= application.cpp \
build.cpp \
check.cpp \

View File

@ -18,8 +18,4 @@ WARNS?= 3
PRIVATELIB= true
SHLIB_MAJOR= 0
# Silence gcc warnings about deprecated std::auto_ptr, and various function
# objects from <functional>.
CWARNFLAGS+= -Wno-deprecated-declarations
.include <bsd.lib.mk>

View File

@ -38,9 +38,6 @@ MAN= atf-check.1
CFLAGS+= -I${ATF}
CFLAGS+= -DATF_SHELL='"/bin/sh"'
# Silence warnings about std::auto_ptr usage
CWARNFLAGS+= -Wno-deprecated-declarations
LIBADD= atf_cxx
HAS_TESTS=

View File

@ -65,9 +65,6 @@ CFLAGS+= -DATF_PKGDATADIR='"${SHAREDIR}/atf"'
CFLAGS+= -DATF_SHELL='"/bin/sh"'
CFLAGS+= -I${ATF}
# Silence warnings about std::auto_ptr usage
CWARNFLAGS+= -Wno-deprecated-declarations
LIBADD= atf_cxx
FILESGROUPS= SUBR

View File

@ -55,8 +55,6 @@ LDADD.${_T}+= ${LIBATF_CXX} ${LIBATF_C}
.endif
TEST_INTERFACE.${_T}= atf
.endfor
# Silence warnings about std::auto_ptr usage
CWARNFLAGS+= -Wno-deprecated-declarations
.endif
.if !empty(ATF_TESTS_SH)

View File

@ -137,6 +137,7 @@ CWARNFLAGS+= -Wno-error=address \
-Wno-error=bool-compare \
-Wno-error=cast-align \
-Wno-error=clobbered \
-Wno-error=deprecated-declarations \
-Wno-error=enum-compare \
-Wno-error=extra \
-Wno-error=inline \