~angelsl/ubuntu/wily/gcc-5/mips-cross

« back to all changes in this revision

Viewing changes to debian/patches/gcc-default-fortify-source.diff

  • Committer: angelsl
  • Date: 2015-10-30 03:30:35 UTC
  • Revision ID: angelsl-20151030033035-rmug41zm8hyjgisg
Original import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# DP: Turn on -D_FORTIFY_SOURCE=2 by default for C, C++, ObjC, ObjC++,
 
2
# DP: if the optimization level is > 0
 
3
 
 
4
---
 
5
 gcc/doc/invoke.texi          |    6 ++++++
 
6
 gcc/c-family/c-cppbuiltin.c  |    3 +
 
7
 2 files changed, 9 insertions(+), 0 deletions(-)
 
8
 
 
9
Index: b/src/gcc/doc/invoke.texi
 
10
===================================================================
 
11
--- a/src/gcc/doc/invoke.texi
 
12
+++ b/src/gcc/doc/invoke.texi
 
13
@@ -6886,6 +6886,12 @@ also turns on the following optimization
 
14
 Please note the warning under @option{-fgcse} about
 
15
 invoking @option{-O2} on programs that use computed gotos.
 
16
 
 
17
+NOTE: In Ubuntu 8.10 and later versions, @option{-D_FORTIFY_SOURCE=2} is
 
18
+set by default, and is activated when @option{-O} is set to 2 or higher.
 
19
+This enables additional compile-time and run-time checks for several libc
 
20
+functions.  To disable, specify either @option{-U_FORTIFY_SOURCE} or
 
21
+@option{-D_FORTIFY_SOURCE=0}.
 
22
+
 
23
 @item -O3
 
24
 @opindex O3
 
25
 Optimize yet more.  @option{-O3} turns on all optimizations specified
 
26
Index: b/src/gcc/c-family/c-cppbuiltin.c
 
27
===================================================================
 
28
--- a/src/gcc/c-family/c-cppbuiltin.c
 
29
+++ b/src/gcc/c-family/c-cppbuiltin.c
 
30
@@ -951,6 +951,10 @@ c_cpp_builtins (cpp_reader *pfile)
 
31
   builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
 
32
   builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
 
33
 
 
34
+  /* Fortify Source enabled by default for optimization levels > 0 */
 
35
+  if (optimize)
 
36
+    builtin_define_with_int_value ("_FORTIFY_SOURCE", 2);
 
37
+
 
38
   /* Misc.  */
 
39
   if (flag_gnu89_inline)
 
40
     cpp_define (pfile, "__GNUC_GNU_INLINE__");