196372Sobrien/* $FreeBSD$ */
290075Sobrien#include "version.h"
390075Sobrien
4169700Skan/* This is the trailing component of the string reported as the
5169700Skan   version number by all components of the compiler.  For an official
6169700Skan   FSF release, it is empty.  If you distribute a modified version of
7169700Skan   GCC, please change this string to indicate that.  The suggested
8169700Skan   format is a leading space, followed by your organization's name
9169700Skan   in parentheses.  You may also wish to include a number indicating
10169700Skan   the revision of your modified compiler.  */
11117411Skan
12171836Skan#define VERSUFFIX " [FreeBSD]"
13117411Skan
14117411Skan/* This is the location of the online document giving instructions for
15117411Skan   reporting bugs.  If you distribute a modified version of GCC,
16117411Skan   please change this to refer to a document giving instructions for
17117411Skan   reporting bugs to you, not us.  (You are of course welcome to
18117411Skan   forward us bugs reported to you, if you determine that they are
19117411Skan   not bugs in your modifications.)  */
20117411Skan
21117411Skanconst char bug_report_url[] = "<URL:http://gcc.gnu.org/bugs.html>";
22169700Skan
23169700Skan/* The complete version string, assembled from several pieces.
24169700Skan   BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile.  */
25169700Skan
26169700Skanconst char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
27