Line 1... |
Line 1... |
/* ldver.c -- Print linker version.
|
/* ldver.c -- Print linker version.
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002,
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002,
|
2003, 2005, 2007, 2008, 2009, 2010, 2011
|
2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012
|
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
|
|
This file is part of the GNU Binutils.
|
This file is part of the GNU Binutils.
|
|
|
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
Line 38... |
Line 38... |
/* Output for noisy == 2 is intended to follow the GNU standards. */
|
/* Output for noisy == 2 is intended to follow the GNU standards. */
|
fprintf (stdout, _("GNU ld %s\n"), BFD_VERSION_STRING);
|
fprintf (stdout, _("GNU ld %s\n"), BFD_VERSION_STRING);
|
|
|
if (noisy & 2)
|
if (noisy & 2)
|
{
|
{
|
printf (_("Copyright 2011 Free Software Foundation, Inc.\n"));
|
printf (_("Copyright 2012 Free Software Foundation, Inc.\n"));
|
printf (_("\
|
printf (_("\
|
This program is free software; you may redistribute it under the terms of\n\
|
This program is free software; you may redistribute it under the terms of\n\
|
the GNU General Public License version 3 or (at your option) a later version.\n\
|
the GNU General Public License version 3 or (at your option) a later version.\n\
|
This program has absolutely no warranty.\n"));
|
This program has absolutely no warranty.\n"));
|
}
|
}
|