binutils-gdb/ld/ldver.c

62 lines
1.8 KiB
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* ldver.c -- Print linker version.
2005-03-03 12:52:12 +01:00
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002,
2011-01-01 22:42:17 +01:00
2003, 2005, 2007, 2008, 2009, 2010, 2011
2010-01-08 20:40:08 +01:00
Free Software Foundation, Inc.
1999-05-03 09:29:11 +02:00
2007-07-06 16:09:45 +02:00
This file is part of the GNU Binutils.
1999-05-03 09:29:11 +02:00
2005-01-31 18:36:24 +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-06 16:09:45 +02:00
the Free Software Foundation; either version 3 of the License, or
2005-01-31 18:36:24 +01:00
(at your option) any later version.
1999-05-03 09:29:11 +02:00
2005-01-31 18:36:24 +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
2005-01-31 18:36:24 +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-06 16:09:45 +02:00
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
1999-05-03 09:29:11 +02:00
#include "sysdep.h"
1999-05-03 09:29:11 +02:00
#include "bfd.h"
#include "bfdver.h"
1999-05-03 09:29:11 +02:00
#include "ld.h"
#include "ldver.h"
#include "ldexp.h"
#include "ldlang.h"
#include "ldfile.h"
1999-05-03 09:29:11 +02:00
#include "ldemul.h"
#include "ldmain.h"
void
ldversion (int noisy)
1999-05-03 09:29:11 +02:00
{
/* Output for noisy == 2 is intended to follow the GNU standards. */
fprintf (stdout, _("GNU ld %s\n"), BFD_VERSION_STRING);
if (noisy & 2)
{
printf (_("Copyright 2011 Free Software Foundation, Inc.\n"));
printf (_("\
This program is free software; you may redistribute it under the terms of\n\
2007-07-06 16:09:45 +02:00
the GNU General Public License version 3 or (at your option) a later version.\n\
This program has absolutely no warranty.\n"));
}
1999-05-03 09:29:11 +02:00
if (noisy & 1)
1999-05-03 09:29:11 +02:00
{
ld_emulation_xfer_type **ptr = ld_emulations;
1999-05-03 09:29:11 +02:00
printf (_(" Supported emulations:\n"));
while (*ptr)
1999-05-03 09:29:11 +02:00
{
printf (" %s\n", (*ptr)->emulation_name);
ptr++;
}
}
}