1999-05-03 09:29:11 +02:00
|
|
|
/* ldver.c -- Print linker version.
|
2014-03-05 12:46:15 +01:00
|
|
|
Copyright (C) 1991-2014 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
|
|
|
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "sysdep.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "bfd.h"
|
2002-10-14 14:09:18 +02:00
|
|
|
#include "bfdver.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "ld.h"
|
|
|
|
#include "ldver.h"
|
2000-07-11 05:42:41 +02:00
|
|
|
#include "ldexp.h"
|
|
|
|
#include "ldlang.h"
|
|
|
|
#include "ldfile.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "ldemul.h"
|
|
|
|
#include "ldmain.h"
|
|
|
|
|
|
|
|
void
|
2003-12-08 00:52:44 +01:00
|
|
|
ldversion (int noisy)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-10-02 08:04:23 +02:00
|
|
|
/* Output for noisy == 2 is intended to follow the GNU standards. */
|
2007-03-01 16:48:36 +01:00
|
|
|
fprintf (stdout, _("GNU ld %s\n"), BFD_VERSION_STRING);
|
2001-10-02 08:04:23 +02:00
|
|
|
|
|
|
|
if (noisy & 2)
|
|
|
|
{
|
2014-03-05 12:46:15 +01:00
|
|
|
printf (_("Copyright (C) 2014 Free Software Foundation, Inc.\n"));
|
2001-10-02 08:04:23 +02:00
|
|
|
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"));
|
2001-10-02 08:04:23 +02:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-10-02 08:04:23 +02:00
|
|
|
if (noisy & 1)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
ld_emulation_xfer_type **ptr = ld_emulations;
|
2000-09-21 22:21:59 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
printf (_(" Supported emulations:\n"));
|
2000-09-21 22:21:59 +02:00
|
|
|
while (*ptr)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
printf (" %s\n", (*ptr)->emulation_name);
|
|
|
|
ptr++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|