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