19990502 sourceware import
[deliverable/binutils-gdb.git] / ld / ldver.c
CommitLineData
252b5132
RH
1/* ldver.c -- Print linker version.
2 Copyright (C) 1991, 92, 93, 94, 95, 1996, 1998 Free Software Foundation, Inc.
3
4This file is part of GLD, the Gnu Linker.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20#include <stdio.h>
21#include "bfd.h"
22#include "sysdep.h"
23
24#include "ld.h"
25#include "ldver.h"
26#include "ldemul.h"
27#include "ldmain.h"
28
29const char *ld_program_version = VERSION;
30
31void
32ldversion (noisy)
33 int noisy;
34{
35 fprintf (stdout, _("GNU ld version %s (with BFD %s)\n"),
36 ld_program_version, BFD_VERSION);
37
38 if (noisy)
39 {
40 ld_emulation_xfer_type **ptr = ld_emulations;
41
42 printf (_(" Supported emulations:\n"));
43 while (*ptr)
44 {
45 printf (" %s\n", (*ptr)->emulation_name);
46 ptr++;
47 }
48 }
49}
This page took 0.023835 seconds and 4 git commands to generate.