Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* Fix for bug 15414 - Build fails with mingw32-w64 GCC-4.8.0
@ 2013-05-09 17:22 Freddie Chopin
  2013-05-09 19:43 ` Mike Frysinger
  2013-05-10 16:09 ` Tom Tromey
  0 siblings, 2 replies; 4+ messages in thread
From: Freddie Chopin @ 2013-05-09 17:22 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 109 bytes --]

http://sourceware.org/bugzilla/show_bug.cgi?id=15414

The idea of change comes from Tom Tromey

Regards,
FCh

[-- Attachment #2: changelog --]
[-- Type: text/plain, Size: 271 bytes --]

	* configure.ac: Fix PR gdb/15414
	Fix FTBFS on mingw32 GCC 4.8.0 - -Wformat-* cannot be used when
	-Wno-format is also present - this causes a warning in GCC 4.8.0 (does
	not happen in earlier versions), which is treated as error.
	
	* sim/common/acinclude.m4: Likewise

[-- Attachment #3: configure.patch --]
[-- Type: text/x-patch, Size: 1628 bytes --]

diff --git a/gdb/configure.ac b/gdb/configure.ac
index bb7fbdd..7c2080c 100644
--- a/gdb/configure.ac
+++ b/gdb/configure.ac
@@ -1926,7 +1926,7 @@ fi
 # NOTE: If you change this list, remember to update
 # gdb/doc/gdbint.texinfo.
 build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
--Wformat-nonliteral -Wpointer-sign \
+-Wpointer-sign \
 -Wno-unused -Wunused-value -Wunused-function \
 -Wno-switch -Wno-char-subscripts -Wmissing-prototypes \
 -Wdeclaration-after-statement -Wempty-body"
@@ -1935,6 +1935,7 @@ build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
 # GCC versions complain about %I64.
 case "${host}" in
   *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
+  *) build_warnings="$build_warnings -Wformat-nonliteral" ;;
 esac
 
 AC_ARG_ENABLE(build-warnings,
diff --git a/sim/common/acinclude.m4 b/sim/common/acinclude.m4
index 73191f2..583f7c3 100644
--- a/sim/common/acinclude.m4
+++ b/sim/common/acinclude.m4
@@ -872,7 +872,7 @@ fi
 # NOTE: If you change this list, remember to update
 # gdb/doc/gdbint.texinfo.
 build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
--Wformat-nonliteral -Wno-pointer-sign \
+-Wno-pointer-sign \
 -Wno-unused -Wunused-value -Wunused-function \
 -Wno-switch -Wno-char-subscripts -Wmissing-prototypes"
 
@@ -880,6 +880,7 @@ build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
 # GCC versions complain about %I64.
 case "${host}" in
   *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
+  *) build_warnings="$build_warnings -Wformat-nonliteral" ;;
 esac
 
 AC_ARG_ENABLE(build-warnings,

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-05-10 17:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-09 17:22 Fix for bug 15414 - Build fails with mingw32-w64 GCC-4.8.0 Freddie Chopin
2013-05-09 19:43 ` Mike Frysinger
2013-05-10 16:09 ` Tom Tromey
2013-05-10 17:53   ` Freddie Chopin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox