1 // version.c -- print gold version information
3 // Copyright 2006, 2007, 2008, 2009, 2010
4 // Free Software Foundation, Inc.
5 // Written by Ian Lance Taylor <iant@google.com>.
7 // This file is part of gold.
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 3 of the License, or
12 // (at your option) any later version.
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 // MA 02110-1301, USA.
29 #include "../bfd/bfdver.h"
34 // The version of gold.
36 // FIXME: This should eventually be PACKAGE_VERSION, and get the
37 // version number from configure.ac. But it's easier to just change
40 static const char* version_string
= "1.10";
42 // Report version information.
45 print_version(bool print_short
)
47 // The --version output is intended to follow the GNU coding
48 // standards. We want to print something like:
49 // GNU gold (GNU binutils 2.19) 1.4
50 // BFD_VERSION_STRING looks like "(GNU Binutils) 2.19". We take off
52 std::string
bfd_version(BFD_VERSION_STRING
);
53 if (bfd_version
[0] == '(')
55 bfd_version
.erase(0, 1);
56 size_t pos
= bfd_version
.find(')');
57 if (pos
!= std::string::npos
)
58 bfd_version
.erase(pos
, 1);
61 printf("GNU gold (%s) %s\n", bfd_version
.c_str(), version_string
);
65 // This output is intended to follow the GNU standards.
66 printf(_("Copyright 2010 Free Software Foundation, Inc.\n"));
68 This program is free software; you may redistribute it under the terms of\n\
69 the GNU General Public License version 3 or (at your option) a later version.\n\
70 This program has absolutely no warranty.\n"));
74 // Return the version string.
79 return version_string
;
82 } // End namespace gold.