This file is indexed.

/usr/share/gprconfig/cpp.xml is in gprbuild 2011-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" ?>
<gprconfig>
   <!--  This package provides the default standard options for a gcc
         C++ compiler -->

   <configuration>
     <compilers>
        <compiler language="C++" />
     </compilers>
     <config>
   package Naming is
      for Spec_Suffix ("C++") use ".hh";
      for Body_Suffix ("C++") use ".cpp";
   end Naming;
   for Inherit_Source_Path ("C++") use ("C");
     </config>
   </configuration>

   <configuration>
     <compilers>
        <compiler name="G++" language="C++" />
        <compiler name="GCC-CYGMING" language="C++" />
       <compiler name="GCC-MINGW32" language="C++" />
     </compilers>
     <config>
   package Compiler is
      for Driver              ("C++") use "${PATH(c++)}g++-4.6${PREFIX(c++)}";
   end Compiler;
     </config>
   </configuration>

   <configuration>
     <compilers>
        <compiler name="G++-WRS653" language="C++" />
        <compiler name="G++-WRS5" language="C++" />
        <compiler name="G++-WRS6" language="C++" />
        <compiler name="G++-WRS6E500V2" language="C++" />
        <compiler name="G++-WRS6CERT" language="C++" />
        <compiler name="G++-WRSMILS" language="C++" />
        <compiler name="G++-WRSMILSHAE" language="C++" />
    </compilers>
     <config>
   package Compiler is
      for Driver              ("C++") use "${PATH(c++)}c++${PREFIX(c++)}";
   end Compiler;
     </config>
   </configuration>

   <configuration>
     <compilers>
        <compiler name="G++" language="C++" />
        <compiler name="G++-WRS653" language="C++" />
        <compiler name="G++-WRSMILS" language="C++" />
        <compiler name="G++-WRSMILSHAE" language="C++" />
        <compiler name="G++-WRS6" language="C++" />
        <compiler name="G++-WRS6E500V2" language="C++" />
        <compiler name="G++-WRS6CERT" language="C++" />
        <compiler name="GCC-CYGMING" language="C++" />
       <compiler name="GCC-MINGW32" language="C++" />
     </compilers>
     <config>
   package Compiler is
      for Leading_Required_Switches   ("C++") use
        Compiler'Leading_Required_Switches ("C++") &amp;
        ("-c", "-x", "c++");
      for Dependency_Switches ("C++") use ("-MMD", "-MF", "");
      for Include_Path        ("C++") use "CPATH";
   end Compiler;
     </config>
   </configuration>


   <!-- G++-WRS5 does not support -MF switch -->
   <configuration>
     <compilers>
        <compiler name="G++-WRS5" language="C++" />
     </compilers>
     <config>
   package Compiler is
      for Leading_Required_Switches   ("C++") use
        Compiler'Leading_Required_Switches ("C++") &amp;
        ("-c", "-x", "c++");
      for Dependency_Switches ("C++") use ("-Wp,-MMD,");
      for Include_Path        ("C++") use "CPATH";
   end Compiler;
     </config>
   </configuration>

   <!--  Additional switches on some platforms -->

   <configuration>
     <compilers>
       <compiler name="G++" language="C++" />
     </compilers>
     <targets negate="true">
       <target name="^.*LynxOS.*$" />
       <target name="^.*mingw.*$" />
       <target name="^.*cygwin.*$" />
       <target name="^.*tru64.*$" />
     </targets>
     <config>
   package Compiler is
      for PIC_Option      ("C++") use ("-fPIC");
   end Compiler;
     </config>
   </configuration>

   <!-- in cygminw mode, make sure that the option -mno-cygwin is used -->

   <configuration>
     <compilers>
       <compiler name="GCC-CYGMING" language="C++" />
     </compilers>
     <config>
   package Compiler is
      for Leading_Required_Switches ("C++") use
         Compiler'Leading_Required_Switches ("C++") &amp; ("-mno-cygwin");
   end Compiler;
     </config>
   </configuration>

   <!-- this compiler is not compatible with GNAT's default zcx runtime -->
   <configuration>
     <compilers><compiler name="GNAT" runtime="default" /></compilers>
     <compilers>
       <compiler name="GCC-CYGMING" language="C++" />
       <compiler name="GCC-CYGMING" language="Fortran" />
       <compiler name="GCC-MINGW32" language="C++" />
       <compiler name="GCC-MINGW32" language="Fortran" />
     </compilers>
     <config></config>
   </configuration>
</gprconfig>