1 /* Binutils emulation layer.
2 Copyright 2002 Free Software Foundation, Inc.
3 Written by Tom Rix, Redhat.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 extern bin_emulation_xfer_type bin_dummy_emulation
;
29 if (bin_dummy_emulation
.ar_usage
)
30 bin_dummy_emulation
.ar_usage (fp
);
34 ar_emul_default_usage (fp
)
37 AR_EMUL_USAGE_PRINT_OPTION_HEADER (fp
);
38 /* xgettext:c-format */
39 fprintf (fp
, _(" No emulation specific options\n"));
43 ar_emul_append (after_bfd
, file_name
, verbose
)
48 if (bin_dummy_emulation
.ar_append
)
49 return bin_dummy_emulation
.ar_append (after_bfd
, file_name
, verbose
);
55 ar_emul_default_append (after_bfd
, file_name
, verbose
)
63 *after_bfd
= bfd_openr (file_name
, NULL
);
65 AR_EMUL_ELEMENT_CHECK (*after_bfd
, file_name
);
66 AR_EMUL_APPEND_PRINT_VERBOSE (verbose
, file_name
);
68 (*after_bfd
)->next
= temp
;
74 ar_emul_replace (after_bfd
, file_name
, verbose
)
79 if (bin_dummy_emulation
.ar_replace
)
80 return bin_dummy_emulation
.ar_replace (after_bfd
, file_name
, verbose
);
86 ar_emul_default_replace (after_bfd
, file_name
, verbose
)
94 *after_bfd
= bfd_openr (file_name
, NULL
);
96 AR_EMUL_ELEMENT_CHECK (*after_bfd
, file_name
);
97 AR_EMUL_REPLACE_PRINT_VERBOSE (verbose
, file_name
);
99 (*after_bfd
)->next
= temp
;
105 ar_emul_create (abfd_out
, archive_file_name
, file_name
)
107 char *archive_file_name
;
110 if (bin_dummy_emulation
.ar_create
)
111 return bin_dummy_emulation
.ar_create (abfd_out
, archive_file_name
,
118 ar_emul_default_create (abfd_out
, archive_file_name
, file_name
)
120 char *archive_file_name
;
125 /* Try to figure out the target to use for the archive from the
126 first object on the list. */
127 if (file_name
!= NULL
)
131 obj
= bfd_openr (file_name
, NULL
);
134 if (bfd_check_format (obj
, bfd_object
))
135 target
= bfd_get_target (obj
);
136 (void) bfd_close (obj
);
140 /* Create an empty archive. */
141 *abfd_out
= bfd_openw (archive_file_name
, target
);
142 if (*abfd_out
== NULL
143 || ! bfd_set_format (*abfd_out
, bfd_archive
)
144 || ! bfd_close (*abfd_out
))
145 bfd_fatal (archive_file_name
);
151 ar_emul_parse_arg (arg
)
154 if (bin_dummy_emulation
.ar_parse_arg
)
155 return bin_dummy_emulation
.ar_parse_arg (arg
);
161 ar_emul_default_parse_arg (arg
)
162 char *arg ATTRIBUTE_UNUSED
;