|
|
0b9bbe |
2022-01-07 Jakub Jelinek <jakub@redhat.com>
|
|
|
0b9bbe |
|
|
|
0b9bbe |
* Makefile.tpl (GOCFLAGS, GDCFLAGS): Filter out -Wformat-security.
|
|
|
0b9bbe |
* Makefile.in: Regenerated.
|
|
|
0b9bbe |
|
|
|
0b9bbe |
2017-02-25 Jakub Jelinek <jakub@redhat.com>
|
|
|
0b9bbe |
|
|
|
0b9bbe |
* configure.ac: When adding -Wno-format, also add -Wno-format-security.
|
|
|
0b9bbe |
* configure: Regenerated.
|
|
|
0b9bbe |
|
|
|
0b9bbe |
--- gcc/configure.ac.jj 2017-02-13 12:20:53.000000000 +0100
|
|
|
0b9bbe |
+++ gcc/configure.ac 2017-02-25 12:42:32.859175403 +0100
|
|
|
0b9bbe |
@@ -570,7 +570,7 @@ AC_ARG_ENABLE(build-format-warnings,
|
|
|
0b9bbe |
AS_HELP_STRING([--disable-build-format-warnings],[don't use -Wformat while building GCC]),
|
|
|
0b9bbe |
[],[enable_build_format_warnings=yes])
|
|
|
0b9bbe |
AS_IF([test $enable_build_format_warnings = no],
|
|
|
0b9bbe |
- [wf_opt=-Wno-format],[wf_opt=])
|
|
|
0b9bbe |
+ [wf_opt="-Wno-format -Wno-format-security"],[wf_opt=])
|
|
|
0b9bbe |
ACX_PROG_CXX_WARNING_OPTS(
|
|
|
0b9bbe |
m4_quote(m4_do([-W -Wall -Wno-narrowing -Wwrite-strings ],
|
|
|
0b9bbe |
[-Wcast-qual $wf_opt])),
|
|
|
0b9bbe |
--- gcc/configure.jj 2017-02-13 12:20:52.000000000 +0100
|
|
|
0b9bbe |
+++ gcc/configure 2017-02-25 12:42:50.041946391 +0100
|
|
|
0b9bbe |
@@ -7077,7 +7077,7 @@ else
|
|
|
0b9bbe |
fi
|
|
|
0b9bbe |
|
|
|
0b9bbe |
if test $enable_build_format_warnings = no; then :
|
|
|
0b9bbe |
- wf_opt=-Wno-format
|
|
|
0b9bbe |
+ wf_opt="-Wno-format -Wno-format-security"
|
|
|
0b9bbe |
else
|
|
|
0b9bbe |
wf_opt=
|
|
|
0b9bbe |
fi
|
|
|
0b9bbe |
--- Makefile.tpl.jj 2021-12-30 15:12:42.188164847 +0100
|
|
|
0b9bbe |
+++ Makefile.tpl 2022-01-07 12:06:12.115550714 +0100
|
|
|
0b9bbe |
@@ -447,8 +447,8 @@ LDFLAGS = @LDFLAGS@
|
|
|
0b9bbe |
LIBCFLAGS = $(CFLAGS)
|
|
|
0b9bbe |
CXXFLAGS = @CXXFLAGS@
|
|
|
0b9bbe |
LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
|
|
|
0b9bbe |
-GOCFLAGS = $(CFLAGS)
|
|
|
0b9bbe |
-GDCFLAGS = $(CFLAGS)
|
|
|
0b9bbe |
+GOCFLAGS = $(filter-out -Wformat-security,$(CFLAGS))
|
|
|
0b9bbe |
+GDCFLAGS = $(filter-out -Wformat-security,$(CFLAGS))
|
|
|
0b9bbe |
|
|
|
0b9bbe |
# Pass additional PGO and LTO compiler options to the PGO build.
|
|
|
0b9bbe |
BUILD_CFLAGS = $(PGO_BUILD_CFLAGS) $(PGO_BUILD_LTO_CFLAGS)
|
|
|
0b9bbe |
--- Makefile.in.jj 2021-12-30 15:12:42.188164847 +0100
|
|
|
0b9bbe |
+++ Makefile.in 2022-01-07 12:06:27.335334561 +0100
|
|
|
0b9bbe |
@@ -444,8 +444,8 @@ LDFLAGS = @LDFLAGS@
|
|
|
0b9bbe |
LIBCFLAGS = $(CFLAGS)
|
|
|
0b9bbe |
CXXFLAGS = @CXXFLAGS@
|
|
|
0b9bbe |
LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
|
|
|
0b9bbe |
-GOCFLAGS = $(CFLAGS)
|
|
|
0b9bbe |
-GDCFLAGS = $(CFLAGS)
|
|
|
0b9bbe |
+GOCFLAGS = $(filter-out -Wformat-security,$(CFLAGS))
|
|
|
0b9bbe |
+GDCFLAGS = $(filter-out -Wformat-security,$(CFLAGS))
|
|
|
0b9bbe |
|
|
|
0b9bbe |
# Pass additional PGO and LTO compiler options to the PGO build.
|
|
|
0b9bbe |
BUILD_CFLAGS = $(PGO_BUILD_CFLAGS) $(PGO_BUILD_LTO_CFLAGS)
|