version.c revision 256281
154359Sroberto/* $FreeBSD: stable/10/contrib/gcc/version.c 171836 2007-08-14 03:04:42Z kan $ */
254359Sroberto#include "version.h"
354359Sroberto
4285612Sdelphij/* This is the trailing component of the string reported as the
554359Sroberto   version number by all components of the compiler.  For an official
654359Sroberto   FSF release, it is empty.  If you distribute a modified version of
754359Sroberto   GCC, please change this string to indicate that.  The suggested
854359Sroberto   format is a leading space, followed by your organization's name
954359Sroberto   in parentheses.  You may also wish to include a number indicating
1054359Sroberto   the revision of your modified compiler.  */
1154359Sroberto
1254359Sroberto#define VERSUFFIX " [FreeBSD]"
1354359Sroberto
1454359Sroberto/* This is the location of the online document giving instructions for
1554359Sroberto   reporting bugs.  If you distribute a modified version of GCC,
1654359Sroberto   please change this to refer to a document giving instructions for
1754359Sroberto   reporting bugs to you, not us.  (You are of course welcome to
1854359Sroberto   forward us bugs reported to you, if you determine that they are
1954359Sroberto   not bugs in your modifications.)  */
2054359Sroberto
2182498Srobertoconst char bug_report_url[] = "<URL:http://gcc.gnu.org/bugs.html>";
2254359Sroberto
2354359Sroberto/* The complete version string, assembled from several pieces.
2454359Sroberto   BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile.  */
2554359Sroberto
26293893Sglebiusconst char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
2754359Sroberto