1999-05-03 09:29:11 +02:00
|
|
|
/* version.c -- binutils version information
|
2007-03-01 16:48:36 +01:00
|
|
|
Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
2009-09-02 09:25:43 +02:00
|
|
|
2006, 2007, 2008, 2009 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-01-20 14:08:47 +01:00
|
|
|
This file is part of GNU Binutils.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-01-20 14:08:47 +01:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-05 18:54:46 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
2004-01-20 14:08:47 +01:00
|
|
|
any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-01-20 14:08:47 +01:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-01-20 14:08:47 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-05 18:54:46 +02:00
|
|
|
Foundation, 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "sysdep.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "bfd.h"
|
|
|
|
#include "bucomm.h"
|
|
|
|
|
2007-07-05 18:54:46 +02:00
|
|
|
/* Print the version number and copyright information, and exit.
|
|
|
|
This implements the --version option for the various programs. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
void
|
2003-09-14 14:20:17 +02:00
|
|
|
print_version (const char *name)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
/* This output is intended to follow the GNU standards document. */
|
|
|
|
/* xgettext:c-format */
|
2001-10-02 08:02:12 +02:00
|
|
|
printf ("GNU %s %s\n", name, BFD_VERSION_STRING);
|
2009-09-01 21:30:28 +02:00
|
|
|
printf (_("Copyright 2009 Free Software Foundation, Inc.\n"));
|
1999-05-03 09:29:11 +02:00
|
|
|
printf (_("\
|
|
|
|
This program is free software; you may redistribute it under the terms of\n\
|
2007-07-05 18:54:46 +02:00
|
|
|
the GNU General Public License version 3 or (at your option) any later version.\n\
|
|
|
|
This program has absolutely no warranty.\n"));
|
1999-05-03 09:29:11 +02:00
|
|
|
exit (0);
|
|
|
|
}
|