xref: /netbsd-src/external/gpl3/gcc.old/dist/gcc/version.c (revision 8feb0f0b7eaff0608f8350bbfa3098827b4bb91b)
1*8feb0f0bSmrg /* Copyright (C) 1997-2020 Free Software Foundation, Inc.
21debfc3dSmrg 
31debfc3dSmrg This file is part of GCC.
41debfc3dSmrg 
51debfc3dSmrg GCC is free software; you can redistribute it and/or modify it under
61debfc3dSmrg the terms of the GNU General Public License as published by the Free
71debfc3dSmrg Software Foundation; either version 3, or (at your option) any later
81debfc3dSmrg version.
91debfc3dSmrg 
101debfc3dSmrg GCC is distributed in the hope that it will be useful, but WITHOUT ANY
111debfc3dSmrg WARRANTY; without even the implied warranty of MERCHANTABILITY or
121debfc3dSmrg FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
131debfc3dSmrg for more details.
141debfc3dSmrg 
151debfc3dSmrg You should have received a copy of the GNU General Public License
161debfc3dSmrg along with GCC; see the file COPYING3.  If not see
171debfc3dSmrg <http://www.gnu.org/licenses/>.  */
181debfc3dSmrg 
191debfc3dSmrg #include "version.h"
201debfc3dSmrg 
211debfc3dSmrg /* This is the location of the online document giving instructions for
221debfc3dSmrg    reporting bugs.  If you distribute a modified version of GCC,
231debfc3dSmrg    please configure with --with-bugurl pointing to a document giving
241debfc3dSmrg    instructions for reporting bugs to you, not us.  (You are of course
251debfc3dSmrg    welcome to forward us bugs reported to you, if you determine that
261debfc3dSmrg    they are not bugs in your modifications.)  */
271debfc3dSmrg 
281debfc3dSmrg const char bug_report_url[] = BUGURL;
291debfc3dSmrg 
301debfc3dSmrg /* The complete version string, assembled from several pieces.
311debfc3dSmrg    BASEVER, DATESTAMP, DEVPHASE, and REVISION are defined by the
321debfc3dSmrg    Makefile.  */
331debfc3dSmrg 
341debfc3dSmrg const char version_string[] = BASEVER DATESTAMP DEVPHASE REVISION;
351debfc3dSmrg const char pkgversion_string[] = PKGVERSION;
36