Up version to 1.1, as the 1.1 binary was pushed to users today.
[deliverable/binutils-gdb.git] / gold / version.cc
1 // version.c -- print gold version information
2
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
5
6 // This file is part of gold.
7
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
12
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
17
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
22
23 #include "gold.h"
24
25 #include "../bfd/bfdver.h"
26
27 namespace gold
28 {
29
30 // The version of gold.
31
32 // FIXME: This should eventually be PACKAGE_VERSION, and get the
33 // version number from configure.ac. But it's easier to just change
34 // this file for now.
35
36 static const char* version_string = "1.1";
37
38 // Report version information.
39
40 void
41 print_version(bool print_short)
42 {
43 /* xgettext:c-format */
44 printf("GNU gold (GNU binutils %s) version %s\n",
45 BFD_VERSION_STRING, version_string);
46
47 if (!print_short)
48 {
49 // This output is intended to follow the GNU standards.
50 printf (_("Copyright 2007 Free Software Foundation, Inc.\n"));
51 printf (_("\
52 This program is free software; you may redistribute it under the terms of\n\
53 the GNU General Public License version 3 or (at your option) a later version.\n\
54 This program has absolutely no warranty.\n"));
55 }
56 }
57
58 // Return the version string.
59
60 const char*
61 get_version_string()
62 {
63 return version_string;
64 }
65
66 } // End namespace gold.
This page took 0.032517 seconds and 5 git commands to generate.