version.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Copyright (C) 1997-2015 Free Software Foundation, Inc.
  2. This file is part of GCC.
  3. GCC is free software; you can redistribute it and/or modify it under
  4. the terms of the GNU General Public License as published by the Free
  5. Software Foundation; either version 3, or (at your option) any later
  6. version.
  7. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  8. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  10. for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with GCC; see the file COPYING3. If not see
  13. <http://www.gnu.org/licenses/>. */
  14. #include "version.h"
  15. /* This is the location of the online document giving instructions for
  16. reporting bugs. If you distribute a modified version of GCC,
  17. please configure with --with-bugurl pointing to a document giving
  18. instructions for reporting bugs to you, not us. (You are of course
  19. welcome to forward us bugs reported to you, if you determine that
  20. they are not bugs in your modifications.) */
  21. const char bug_report_url[] = BUGURL;
  22. /* The complete version string, assembled from several pieces.
  23. BASEVER, DATESTAMP, DEVPHASE, and REVISION are defined by the
  24. Makefile. */
  25. const char version_string[] = BASEVER DATESTAMP DEVPHASE REVISION;
  26. const char pkgversion_string[] = PKGVERSION;