1999-05-03 09:29:11 +02:00
|
|
|
/* ldver.c -- Print linker version.
|
2002-01-18 12:28:42 +01:00
|
|
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002
|
2000-07-11 05:42:41 +02:00
|
|
|
Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
This file is part of GLD, the Gnu Linker.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "bfd.h"
|
|
|
|
#include "sysdep.h"
|
|
|
|
|
|
|
|
#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
|
|
|
|
ldversion (noisy)
|
|
|
|
int noisy;
|
|
|
|
{
|
2001-10-02 08:04:23 +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)
|
|
|
|
{
|
2002-01-18 12:28:42 +01:00
|
|
|
printf (_("Copyright 2002 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\
|
|
|
|
the GNU General Public License. This program has absolutely no warranty.\n"));
|
|
|
|
}
|
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++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|