OSDN Git Service

PR c++/31074
[pf3gnuchains/gcc-fork.git] / gcc / version.c
1 #include "version.h"
2
3 /* This is the trailing component of the string reported as the
4    version number by all components of the compiler.  For an official
5    FSF release, it is empty.  If you distribute a modified version of
6    GCC, please change this string to indicate that.  The suggested
7    format is a leading space, followed by your organization's name
8    in parentheses.  You may also wish to include a number indicating
9    the revision of your modified compiler.  */
10
11 #define VERSUFFIX ""
12
13 /* This is the location of the online document giving instructions for
14    reporting bugs.  If you distribute a modified version of GCC,
15    please change this to refer to a document giving instructions for
16    reporting bugs to you, not us.  (You are of course welcome to
17    forward us bugs reported to you, if you determine that they are
18    not bugs in your modifications.)  */
19
20 const char bug_report_url[] = "<URL:http://gcc.gnu.org/bugs.html>";
21
22 /* The complete version string, assembled from several pieces.
23    BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile.  */
24
25 const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;