Changeset 609 for branches/GNU/src/binutils/ld/ldver.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/ld/ldver.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* ldver.c -- Print linker version. 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000 2 Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002 3 3 Free Software Foundation, Inc. 4 4 … … 21 21 #include <stdio.h> 22 22 #include "bfd.h" 23 #include "bfdver.h" 23 24 #include "sysdep.h" 24 25 … … 31 32 #include "ldmain.h" 32 33 33 const char *ld_program_version = VERSION;34 35 34 void 36 35 ldversion (noisy) 37 36 int noisy; 38 37 { 39 fprintf (stdout, _("GNU ld version %s (with BFD %s)\n"),40 ld_program_version, BFD_VERSION);38 /* Output for noisy == 2 is intended to follow the GNU standards. */ 39 fprintf (stdout, _("GNU ld version %s\n"), BFD_VERSION_STRING); 41 40 42 if (noisy) 41 if (noisy & 2) 42 { 43 printf (_("Copyright 2002 Free Software Foundation, Inc.\n")); 44 printf (_("\ 45 This program is free software; you may redistribute it under the terms of\n\ 46 the GNU General Public License. This program has absolutely no warranty.\n")); 47 } 48 49 if (noisy & 1) 43 50 { 44 51 ld_emulation_xfer_type **ptr = ld_emulations; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.