]> gcc.gnu.org Git - gcc.git/blame - gcc/version.c
In gcc/testsuite/: 2010-10-20 Nicola Pero <nicola.pero@meta-innovation.com>
[gcc.git] / gcc / version.c
CommitLineData
ad41bd84
JM
1/* Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2 2007 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
4746ee26
KG
20#include "version.h"
21
36624850
ZW
22/* This is the location of the online document giving instructions for
23 reporting bugs. If you distribute a modified version of GCC,
2f41c1d6
PB
24 please configure with --with-bugurl pointing to a document giving
25 instructions for reporting bugs to you, not us. (You are of course
26 welcome to forward us bugs reported to you, if you determine that
27 they are not bugs in your modifications.) */
36624850 28
2f41c1d6 29const char bug_report_url[] = BUGURL;
a1286ef5
ZW
30
31/* The complete version string, assembled from several pieces.
db5b4110
L
32 BASEVER, DATESTAMP, DEVPHASE, and REVISION are defined by the
33 Makefile. */
a1286ef5 34
2f41c1d6
PB
35const char version_string[] = BASEVER DATESTAMP DEVPHASE REVISION;
36const char pkgversion_string[] = PKGVERSION;
This page took 5.479434 seconds and 5 git commands to generate.