1 /* bucomm.c -- Bin Utils COMmon code.
2 Copyright (C) 1991, 92, 93, 94 Free Software Foundation, Inc.
4 This file is part of GNU Binutils.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* We might put this in a library someday so it could be dynamically
21 loaded, but for now it's not necessary. */
25 #include "libiberty.h"
28 #ifdef ANSI_PROTOTYPES
34 char *target = NULL; /* default as late as possible */
44 CONST char *errmsg = bfd_errmsg (bfd_get_error ());
47 fprintf (stderr, "%s: %s: %s\n", program_name, string, errmsg);
49 fprintf (stderr, "%s: %s\n", program_name, errmsg);
56 bfd_nonfatal (string);
60 #ifdef ANSI_PROTOTYPES
62 fatal (const char *format, ...)
66 fprintf (stderr, "%s: ", program_name);
67 va_start (args, format);
68 vfprintf (stderr, format, args);
81 fprintf (stderr, "%s: ", program_name);
83 Format = va_arg (args, char *);
84 vfprintf (stderr, Format, args);
91 /* After a false return from bfd_check_format_matches with
92 bfd_get_error () == bfd_error_file_ambiguously_recognized, print the possible
96 list_matching_formats (p)
99 fprintf(stderr, "%s: Matching formats:", program_name);
101 fprintf(stderr, " %s", *p++);
102 fprintf(stderr, "\n");
105 /* List the supported targets. */
108 list_supported_targets (name, f)
112 extern bfd_target *bfd_target_vector[];
116 fprintf (f, "Supported targets:");
118 fprintf (f, "%s: supported targets:", name);
119 for (t = 0; bfd_target_vector[t] != NULL; t++)
120 fprintf (f, " %s", bfd_target_vector[t]->name);
124 /* Display the archive header for an element as if it were an ls -l listing:
126 Mode User\tGroup\tSize\tDate Name */
129 print_arelt_descr (file, abfd, verbose)
138 if (bfd_stat_arch_elt (abfd, &buf) == 0)
142 time_t when = buf.st_mtime;
143 CONST char *ctime_result = (CONST char *) ctime (&when);
145 /* POSIX format: skip weekday and seconds from ctime output. */
146 sprintf (timebuf, "%.12s %.4s", ctime_result + 4, ctime_result + 20);
148 mode_string (buf.st_mode, modebuf);
150 /* POSIX 1003.2/D11 says to skip first character (entry type). */
151 fprintf (file, "%s %ld/%ld %6ld %s ", modebuf + 1,
152 (long) buf.st_uid, (long) buf.st_gid,
153 (long) buf.st_size, timebuf);
157 fprintf (file, "%s\n", bfd_get_filename (abfd));