public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Define _FORTIFY_SOURCE in common-defs.h
@ 2018-08-10 21:24 Tom Tromey
  2018-08-10 21:33 ` Simon Marchi
  0 siblings, 1 reply; 2+ messages in thread
From: Tom Tromey @ 2018-08-10 21:24 UTC (permalink / raw)
  To: gdb-patches; +Cc: Tom Tromey

This defines _FORTIFY_SOURCE in common-defs.h.  This seems like a
sensible safety measure, and also it may help avoid build problems
with -Wunused-result on distros that already define _FORTIFY_SOURCE by
default.

Tested by the buildbot.

gdb/ChangeLog
2018-08-10  Tom Tromey  <tom@tromey.com>

	* common/common-defs.h (_FORTIFY_SOURCE): Define.
---
 gdb/ChangeLog            |  4 ++++
 gdb/common/common-defs.h | 12 ++++++++++++
 2 files changed, 16 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e046b64b5c6..810431f2bfe 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-08-10  Tom Tromey  <tom@tromey.com>
+
+	* common/common-defs.h (_FORTIFY_SOURCE): Define.
+
 2018-08-10  Keith Seitz  <keiths@redhat.com>
 
 	* compile/compile-c-support.c (add_code_header, add_code_footer):
diff --git a/gdb/common/common-defs.h b/gdb/common/common-defs.h
index 80f1ff4f560..58445b16110 100644
--- a/gdb/common/common-defs.h
+++ b/gdb/common/common-defs.h
@@ -59,6 +59,18 @@
 #define __STDC_LIMIT_MACROS 1
 #define __STDC_FORMAT_MACROS 1
 
+/* Some distros enable _FORTIFY_SOURCE by default, which on occasion
+   has caused build failures with -Wunused-result when a patch is
+   developed on a distro that does not enable _FORTIFY_SOURCE.  We
+   enable it here in order to try to catch these problems earlier;
+   plus this seems like a reasonable safety measure.  The check for
+   optimization is required because _FORTIFY_SOURCE only works when
+   optimization is enabled.  */
+
+#if defined __OPTIMIZE__ && __OPTIMIZE__ > 0
+#define _FORTIFY_SOURCE 2
+#endif
+
 #include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
-- 
2.17.1

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

* Re: [PATCH] Define _FORTIFY_SOURCE in common-defs.h
  2018-08-10 21:24 [PATCH] Define _FORTIFY_SOURCE in common-defs.h Tom Tromey
@ 2018-08-10 21:33 ` Simon Marchi
  0 siblings, 0 replies; 2+ messages in thread
From: Simon Marchi @ 2018-08-10 21:33 UTC (permalink / raw)
  To: Tom Tromey; +Cc: gdb-patches

On 2018-08-10 17:24, Tom Tromey wrote:
> This defines _FORTIFY_SOURCE in common-defs.h.  This seems like a
> sensible safety measure, and also it may help avoid build problems
> with -Wunused-result on distros that already define _FORTIFY_SOURCE by
> default.

I rarely build with optimization enabled, so I wouldn't notice, but at 
least it will help reproduce this kind of problem.

Thanks,

Simon

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

end of thread, other threads:[~2018-08-10 21:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-10 21:24 [PATCH] Define _FORTIFY_SOURCE in common-defs.h Tom Tromey
2018-08-10 21:33 ` Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).