patches/gcc/4.4.5/140-default-format-security.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu May 19 23:06:16 2011 +0200 (2011-05-19)
changeset 2461 ec30b191f0e3
permissions -rw-r--r--
complibs/ppl: build only C and C++ interfaces for PPL

By default, PPL wants to build interfaces for any of a variety of
langauges it finds on the local host (python, java, possibly perl, also
more esoteric languages such as ocaml and prolog).

These extra interfaces can double the compile time for the library. For
single-process builds, I found a savings of more than 40%:

default / j1: 716s total, 143.2s avg, 0.52s stdev
just_c / j1: 406s total, 81.2s avg, 0.33s stdev
just_c_cpp / j1: 413s total, 82.6s avg, 0.22s stdev

And for multi-process builds, it approached 50%:

default / j4: 625s total, 125.0s avg, 0.57s stdev
just_c / j4: 338s total, 67.6s avg, 1.25s stdev
just_c_cpp / j4: 327s total, 65.4s avg, 0.36s stdev

Since the PPL we build within ct-ng is only used by GCC, we only need to
build the C and C++ interfaces.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
yann@2149
     1
diff -durN gcc-4.4.5.orig/gcc/c-common.c gcc-4.4.5/gcc/c-common.c
yann@2149
     2
--- gcc-4.4.5.orig/gcc/c-common.c	2010-07-27 15:07:28.000000000 +0200
yann@2149
     3
+++ gcc-4.4.5/gcc/c-common.c	2010-10-09 22:59:03.000000000 +0200
yann@2149
     4
@@ -301,7 +301,7 @@
yann@2149
     5
 /* Warn about format/argument anomalies in calls to formatted I/O functions
yann@2149
     6
    (*printf, *scanf, strftime, strfmon, etc.).  */
yann@2149
     7
 
yann@2149
     8
-int warn_format;
yann@2149
     9
+int warn_format = 1;
yann@2149
    10
 
yann@2149
    11
 /* Warn about using __null (as NULL in C++) as sentinel.  For code compiled
yann@2149
    12
    with GCC this doesn't matter as __null is guaranteed to have the right
yann@2149
    13
diff -durN gcc-4.4.5.orig/gcc/c.opt gcc-4.4.5/gcc/c.opt
yann@2149
    14
--- gcc-4.4.5.orig/gcc/c.opt	2009-09-18 23:53:23.000000000 +0200
yann@2149
    15
+++ gcc-4.4.5/gcc/c.opt	2010-10-09 22:59:03.000000000 +0200
yann@2149
    16
@@ -236,7 +236,7 @@
yann@2149
    17
 Warn about format strings that contain NUL bytes
yann@2149
    18
 
yann@2149
    19
 Wformat-security
yann@2149
    20
-C ObjC C++ ObjC++ Var(warn_format_security) Warning
yann@2149
    21
+C ObjC C++ ObjC++ Var(warn_format_security) Init(1) Warning
yann@2149
    22
 Warn about possible security problems with format functions
yann@2149
    23
 
yann@2149
    24
 Wformat-y2k
yann@2149
    25
diff -durN gcc-4.4.5.orig/gcc/doc/invoke.texi gcc-4.4.5/gcc/doc/invoke.texi
yann@2149
    26
--- gcc-4.4.5.orig/gcc/doc/invoke.texi	2010-09-08 20:13:03.000000000 +0200
yann@2149
    27
+++ gcc-4.4.5/gcc/doc/invoke.texi	2010-10-09 22:59:03.000000000 +0200
yann@2149
    28
@@ -2888,6 +2888,9 @@
yann@2149
    29
 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
yann@2149
    30
 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
yann@2149
    31
 
yann@2149
    32
+NOTE: In Gentoo, this option is enabled by default for C, C++, ObjC, ObjC++.
yann@2149
    33
+To disable, use @option{-Wformat=0}.
yann@2149
    34
+
yann@2149
    35
 @item -Wformat-y2k
yann@2149
    36
 @opindex Wformat-y2k
yann@2149
    37
 @opindex Wno-format-y2k
yann@2149
    38
@@ -2941,6 +2944,11 @@
yann@2149
    39
 in future warnings may be added to @option{-Wformat-security} that are not
yann@2149
    40
 included in @option{-Wformat-nonliteral}.)
yann@2149
    41
 
yann@2149
    42
+NOTE: In Gentoo, this option is enabled by default for C, C++, ObjC, ObjC++.
yann@2149
    43
+To disable, use @option{-Wno-format-security}, or disable all format warnings
yann@2149
    44
+with @option{-Wformat=0}.  To make format security warnings fatal, specify
yann@2149
    45
+@option{-Werror=format-security}.
yann@2149
    46
+
yann@2149
    47
 @item -Wformat=2
yann@2149
    48
 @opindex Wformat=2
yann@2149
    49
 @opindex Wno-format=2