version.c revision 267734
1300906Sasomers/* $FreeBSD: stable/10/contrib/gcc/version.c 267734 2014-06-22 16:48:21Z gavin $ */
2300906Sasomers#include "version.h"
3300906Sasomers
4300906Sasomers/* This is the trailing component of the string reported as the
5300906Sasomers   version number by all components of the compiler.  For an official
6300906Sasomers   FSF release, it is empty.  If you distribute a modified version of
7300906Sasomers   GCC, please change this string to indicate that.  The suggested
8300906Sasomers   format is a leading space, followed by your organization's name
9300906Sasomers   in parentheses.  You may also wish to include a number indicating
10300906Sasomers   the revision of your modified compiler.  */
11300906Sasomers
12300906Sasomers#define VERSUFFIX " [FreeBSD]"
13300906Sasomers
14300906Sasomers/* This is the location of the online document giving instructions for
15300906Sasomers   reporting bugs.  If you distribute a modified version of GCC,
16300906Sasomers   please change this to refer to a document giving instructions for
17300906Sasomers   reporting bugs to you, not us.  (You are of course welcome to
18300906Sasomers   forward us bugs reported to you, if you determine that they are
19300906Sasomers   not bugs in your modifications.)  */
20300906Sasomers
21300906Sasomersconst char bug_report_url[] = "<URL:http://www.freebsd.org/support.html>";
22300906Sasomers
23300906Sasomers/* The complete version string, assembled from several pieces.
24300906Sasomers   BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile.  */
25300906Sasomers
26300906Sasomersconst char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
27300906Sasomers