binutils-gdb/ld/ldver.c

60 lines
1.7 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,
2003 Free Software Foundation, Inc.
1999-05-03 09:29:11 +02:00
2005-01-31 18:36:24 +01:00
This file is part of GLD, the Gnu Linker.
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
the Free Software Foundation; either version 2 of the License, or
(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
2005-05-12 09:32:09 +02:00
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
1999-05-03 09:29:11 +02:00
#include <stdio.h>
#include "bfd.h"
#include "bfdver.h"
1999-05-03 09:29:11 +02:00
#include "sysdep.h"
#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 version %s\n"), BFD_VERSION_STRING);
if (noisy & 2)
{
2005-01-31 18:36:24 +01:00
printf (_("Copyright 2005 Free Software Foundation, Inc.\n"));
printf (_("\
This program is free software; you may redistribute it under the terms of\n\
the GNU General Public License. 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++;
}
}
}