]> Git Repo - binutils.git/blob - bfd/ChangeLog
e7641b8ef20a758a5b899edcc39ff519e26fa4a0
[binutils.git] / bfd / ChangeLog
1 Thu Nov  9 08:40:23 1995  Kim Knuttila  <[email protected]>
2
3         * coff-ppc.c (ppc_coff_link_hash_entry): new types for hashing
4         (ppc_coff_link_hash_table): new types for hashing
5         (ppc_coff_link_hash_newfunc): hash entry constructor
6         (ppc_coff_link_hash_table_init): hash table initializer
7         (ppc_coff_link_hash_table_create): hash table constructor
8         (ppc_record_toc_entry): changed references to hash table
9         (coff_ppc_relocate_section): changed references to hash table
10
11         * libcoff-in.h (coff_link_hash_entry): removed toc_offset
12         * libcoff.h: Rebuild
13
14         * cofflink.c (_bfd_coff_link_hash_newfunc): removed toc_offset init
15         (coff_link_add_symbols): removed toc_offset init
16
17 Thu Nov  9 04:00:38 1995  Ken Raeburn  <[email protected]>
18
19         * Makefile.in (.dep1): Make sure the file mkdep is to write exists
20         first.
21
22         * configure.in: Added new option --with[out]-mmap.  Set USE_MMAP
23         if it is given and mmep is available.
24         * acconfig.h: Undef USE_MMAP.
25         * configure, config.in: Regenerated.
26         * aoutx.h: If USE_MMAP is not defined, do all symbol and string
27         table handling the old way.
28         (aout_get_external_symbols): Don't complain if last byte of string
29         table is nonzero.
30         * libbfd.c [HAVE_MADVISE]: Include sys/types.h and sys/mman.h.
31         (bfd_free_window) [! USE_MMAP]: Don't define.
32         (bfd_get_file_window,
33         _bfd_generic_get_section_contents_in_window) [! USE_MMAP]: Abort.
34
35 Wed Nov  8 20:03:44 1995  Eric Freudenthal <[email protected]>
36
37         * coff-a29k.c (SIGN_EXTEND_HWORD): Use ~0xffff rather than
38         0xffff0000.
39
40 Wed Nov  8 11:31:11 1995  Ian Lance Taylor  <[email protected]>
41
42         * coff-a29k.c (a29k_reloc): Change handling of R_IREL reloc to be
43         compatible with AMD generated COFF files.  Try to support both AMD
44         and GNU formats simultaneously.
45         (coff_a29k_relocate_section): Likewise.
46
47         * libbfd.c (bfd_get_file_window): Change writable parameter from
48         int to boolean; update all callers.  Pass MAP_SHARED if not
49         writable--it's required on Solaris.  Cast fprintf argument to
50         avoid warning.
51         * bfd-in.h (bfd_get_file_window): Update declaration.
52         * bfd-in2.h: Rebuild.
53         * aoutx.h: Update calls to bfd_get_file_window.
54
55         * xcofflink.c (XCOFF_DEF_DYNAMIC): Rename from XCOFF_REF_DYNAMIC.
56         Change all uses.
57         (xcoff_swap_ldhdr_in): New static function.
58         (xcoff_swap_ldsym_in): New static function.
59         (xcoff_find_reloc): Handle the case of a single reloc correctly.
60         (xcoff_link_add_symbols): If we just created a descriptor, pass it
61         to _bfd_generic_link_add_one_symbol, to save a hash lookup.
62         Handle XTY_ER/XMC_XO symbols correctly.
63         (xcoff_link_add_dynamic_symbols): Rewrite to read .loader symbols
64         rather than normal symbol table.
65         (bfd_xcoff_import_symbol): It's not an error if the symbol is
66         already defined with the same absolute value.
67         (xcoff_mark): When considering called symbols, check whether the
68         descriptor is from a dynamic object, rather than the symbol
69         itself.
70         (xcoff_build_ldsyms): Likewise.
71
72         * libbfd.c (bfd_get_file_window): Change return type to boolean.
73         Cast realloc and malloc return values.  If malloc or realloc fail,
74         set bfd_error_no_memory.
75         * bfd-in.h (bfd_get_file_window): Change type to boolean.
76         * bfd-in2.h: Rebuild.
77
78 Tue Nov  7 11:53:48 1995  Kim Knuttila  <[email protected]>
79
80         * coff-ppc.c (ppc_record_toc_entry): new function.
81         (in_reloc_p): changed return value.
82         (coff_ppc_relocate_section): much rework.
83         (ppc_allocate_toc_section): new function.
84         (ppc_process_before_allocation): new function.
85         (ppc_coff_swap_sym_in_hook): new function.
86
87         * cofflink.c (_bfd_coff_link_hash_newfunc): initialize toc_offset.
88         (coff_link_add_symbols): initialize toc_offset.
89
90         * peicode.h (coff_swap_sym_in): Added coff_swap_sym_in_hook
91         (coff_swap_aouthdr_out): Added more sections to the data
92         dictionary for the pe file header. Also changed linker version
93         number on the ppc side.
94         (dir_names): small improvements to the dictionary printing.
95         (pe_mkobject_hook): save the file level flags.
96
97         * libcoff-in.h (coff_link_hash_entry): added toc_offset field
98         (pe_tdata): added real_flags field
99         (coff_tdata): added local_toc_sym_map and access macro
100
101         * libcoff.h (coff_link_hash_entry): added toc_offset field
102         (pe_tdata): added real_flags field
103         (coff_tdata): added local_toc_sym_map and access macro
104
105         * coffcode.h (coff_set_alignment_hook): added hook for PE.
106         (coff_mkobject): init for local_toc_sym_map
107         (coff_write_object_contents): set the internal_a.magic to
108         IMAGE_NT_OPTIONAL_HDR_MAGIC which appears to be what other
109         ppc compilers use.
110
111 Tue Nov  7 13:48:58 1995  Ian Lance Taylor  <[email protected]>
112
113         * ecofflink.c (_bfd_ecoff_locate_line): Keep looking through stabs
114         entries until both the line number address and the function name
115         address are too large.
116
117         * configure.in: Call AC_CHECK_PROG to find and cache AR.
118         * configure: Rebuilt.
119
120         * aclocal.m4 (BFD_CC_FOR_BUILD): Don't define CC_FOR_BUILD if it
121         is defined in the environment.
122
123 Tue Nov  7 10:57:24 1995  Jeffrey A Law  ([email protected])
124
125         * som.c (som_get_section_contents_in_window): Define to use
126         generic version.
127
128 Mon Nov  6 17:13:15 1995  Harry Dolan  <[email protected]>
129
130         * coff-i860.c: New file, based on coff-i386.c.
131         * cpu-i860.c: New file, based on cpu-i386.c.
132         * hosts/i860mach3.h: New file, based on hosts/i386mach3.h.
133         * config.bfd (i860-*-mach3*, i860-*-osf1*, i860-*-coff*): New
134         targets, using i860coff_vec.
135         * configure.in (i860-*-mach3*, i860-*-osf1*): New hosts, using
136         trad-core.o and hosts/i860mach3.h.
137         (i860coff_vec): Use coff-i860.o and cofflink.o.
138         * configure: Rebuild.
139         * Makefile.in: Rebuild dependencies.
140         (ALL_MACHINES): Add cpu-i860.o.
141         (BFD32_BACKENDS): Add coff-i860.o.
142         (CFILES): Add cpu-i860.c and coff-i860.c.
143         * targets.c (i860coff_vec): Declare.
144         (bfd_target_vector): Add &i860coff_vec. 
145         * archures.c (bfd_i860_arch): Declare.
146         (bfd_archures_list): Add &bfd_i860_arch.
147         * coffcode.h (coff_set_arch_mach_hook): Handle I860 magic number.
148         (coff_set_flags): Handle bfd_arch_i860.
149         (coff_write_object_contents): Handle I860 a.out magic number.
150
151 Mon Nov  6 14:34:07 1995  Ian Lance Taylor  <[email protected]>
152
153         * xcofflink.c (xcoff_link_add_symbols): Set the alignment power of
154         the created .tc section to 2.
155         (xcoff_mark): Don't keep a .loader reloc for a call to an
156         undefined symbol when creating a shared library.
157         (xcoff_build_ldsyms): When creating a shared library, generate
158         global linkage code for a call to an undefined symbol.
159
160 Sun Nov  5 21:44:13 1995  Ken Raeburn  <[email protected]>
161
162         * Makefile.in (CFILES): Rebuild list from BFD_LIBS, ALL_MACHINES,
163         BFD32_BACKENDS, BFD64_BACKENDS.
164         (.dep1): Put mkdep output in a separate file.
165         Rebuilt dependencies.
166
167         * ecoff.c (_bfd_ecoff_slurp_armap): Cast _bfd_read_ar_hdr return
168         value.
169
170         Permit use of mmap when available:
171
172         * configure.in: Check for mmap, madvise, mprotect.
173         * config.in, configure: Regenerated.
174
175         * libbfd.c (struct _bfd_window_internal): Define type.
176         (bfd_init_window, bfd_free_window, bfd_get_file_window): New
177         functions.
178         (ok_to_map): New static variable for debugging.
179         (_bfd_generic_get_section_contents_in_window): New function.
180         * bfd-in.h (bfd_window_internal): Declare type.
181         (bfd_window): Define type.
182         (bfd_init_window, bfd_free_window, bfd_get_file_window): Declare.
183         * libbfd-in.h (_bfd_generic_get_section_contents_in_window):
184         Declare.
185
186         * libaout.h (struct aoutdata): Add two window fields.
187         (obj_aout_sym_window, obj_aout_string_window): New macros.
188         * aoutx.h (some_aout_object_p): Initialize windows.
189         (aout_get_external_symbols): Get symbol data and strings in
190         windows instead of explicitly allocated buffers.
191         (slurp_symbol_table): Free window instead of memory.
192         (bfd_free_cached_info): Release windows instead of freeing storage
193         directly.
194         (aout_link_free_symbols): Ditto.
195
196         * targets.c (bfd_target): Add new field for
197         get_section_contents_in_window.
198         (BFD_JUMP_TABLE_GENERIC): Updated.
199         * aout-adobe.c, aout-target.h, binary.c, bout.c, coff-alpha.c,
200         coff-mips.c, elfxx-target.h, i386msdos.c, i386os9k.c, ieee.c,
201         libcoff-in.h, oasys.c, srec.c, tekhex.c, versados.c: Added new
202         macros for get_section_contents_in_window field.
203
204 Sat Nov  4 12:23:26 1995  Fred Fish  <[email protected]>
205
206         * core.c: Renamed to corefile.c
207         * makefile.dos (OBJS): Change core.o to corefile.o
208         * Makefile.in (CFILES, BFD_LIBS): Use corefile.c instead of core.c
209         
210 start-sanitize-gm
211 Sat Nov  4 10:16:54 1995  Stu Grossman  ([email protected])
212
213         * config.bfd (mips*-*-magic*):  Add bfd_elf32_bigmips_vec to
214         targ_selvecs to allow debugging under Irix-5 native.
215
216 end-sanitize-gm
217 Fri Nov  3 15:54:59 1995  Ian Lance Taylor  <[email protected]>
218
219         * xcofflink.c (xcoff_link_add_symbols): Rename local variable sub
220         to o.  Clobber and restore the list of new csects around the call
221         to _bfd_generic_link_add_one_symbol, in case it wants to report a
222         linker error and the linker wants to read the symbol table.  Reset
223         the line number count of a real section even if it has no relocs.
224         (_bfd_xcoff_bfd_final_link): If shared, set the DYNAMIC flag.
225
226         * coffgen.c (_bfd_coff_read_string_table): Warn if the string size
227         is too small.
228
229 Thu Nov  2 23:16:39 1995  Ian Lance Taylor  <[email protected]>
230
231         * xcofflink.c (_bfd_ppc_xcoff_relocate_section): Don't warn about
232         an undefined symbol in a shared link.
233
234         * linker.c (_bfd_generic_link_add_one_symbol): Correct type of
235         oldtype from bfd_link_order_type to bfd_link_hash_type.  From
236         [email protected] (Philippe De Muyter).
237
238 Wed Nov  1 14:26:02 1995  Manfred Hollstein KS/EF4A 60/1F/110 #40283  <[email protected]>
239
240         * coff-m88k.c (rtype2howto): New static function.
241         (RTYPE2HOWTO): Use it rather than a macro definition.
242
243         * coffcode.h (coff_write_object_contents): set internal_a.magic
244         to PAGEMAGICPEXECPAGED #if defined (M68) && !defined (LYNXOS).
245
246         * configure.in: m68*-motorola-sysv* does not use ptrace-core.o;
247         define TRAD_HEADER to new file hosts/delta68.h.
248         m88*-motorola-sysv*, however, does use ptrace-core.o.
249         * hosts/delta68.h: New file.
250
251         * ptrace-core.c (ptrace_unix_core_file_p): change bfd_zmalloc to
252         bfd_zalloc; provide proper parm abfd to calls to bfd_zalloc.
253
254 Wed Nov  1 13:51:54 1995  Ken Raeburn  <[email protected]>
255
256         * i386linux.c (MY(vec)): Declare before use.
257
258 Wed Nov  1 11:45:07 1995  Ian Lance Taylor  <[email protected]>
259
260         * reloc16.c (bfd_coff_reloc16_get_relocated_section_contents):
261         Pass input_bfd, not in_bfd, to bfd_coff_reloc16_extra_cases.
262
263         * elf.c (bfd_elf_set_dt_needed_name): Don't do anything if the
264         BFD is not of the right type.
265         (bfd_elf_get_needed_list): Likewise.
266         * i386linux.c (bfd_linux_size_dynamic_sections): Likewise.
267         * sunos.c (bfd_sunos_get_needed_list): Likewise.
268         * xcofflink.c (XCOFF_XVECP): Define.
269         (bfd_xcoff_link_record_set): Don't do anything if the BFD is not
270         of the right type.
271         (bfd_xcoff_import_symbol): Likewise.
272         (bfd_xcoff_export_symbol): Likewise.
273         (bfd_xcoff_link_count_reloc): Likewise.
274         (bfd_xcoff_record_link_assignment): Likewise.
275         (bfd_xcoff_size_dynamic_sections): Likewise.
276
277         * sunos.c (sunos_scan_ext_relocs): Only check the reloc symbol
278         table index against the number of symbols for a base relative
279         reloc.
280
281         * coff-rs6000.c (_bfd_xcoff_sizeof_headers): Change from macro to
282         static function.
283         * xcofflink.c (_bfd_xcoff_bfd_link_hash_table_create): Set
284         full_aouthdr flag here...
285         (_bfd_xcoff_bfd_final_link): ...not here.
286
287 Tue Oct 31 12:52:02 1995  Fred Fish  <[email protected]>
288
289         * libelf.h:  Rename to elf-bfd.h to avoid conflict with
290         systems that have a system <libelf.h>.
291         * Makefile.in: Globally replace libelf.h with elf-bfd.h.
292         * bfd.c, elf.c, elf32-arc.c, elf32-gen.c, elf32-hppa.c,
293         elf32-hppa.h, elf32-i386.c, elf32-i860.c, elf32-m68k.c,
294         elf32-m88k.c, elf32-mips.c, elf32-ppc.c, elf32-sparc.c,
295         elf64-gen.c, elf64-sparc.c, elfcode.h, elflink.c,
296         elfxx-target.h: Include elf-bfd.h rather than libelf.h.
297         * elfxx-target.h: Change libelf.h reference to elf-bfd.h.
298
299 Tue Oct 31 15:30:07 1995  David Mosberger-Tang  <[email protected]>
300
301         * ecoff.c (ecoff_set_symbol_info): Add new parameter weak.  If
302         set, set BSF_WEAK in symbol.  Change all callers.
303         (ecoff_get_extr): Set weakext based on BSF_WEAK.
304         (ecoff_link_add_externals): If weakext is set, pass BSF_WEAK to
305         _bfd_generic_link_add_one_symbol.
306         (ecoff_indirect_link_order): Check that the section tdata relocs
307         are not NULL before using them.
308
309         * configure.in (alpha*-*-linux*): Set COREFILE to trad-core.o and
310         define TRAD_HEADER as hosts/alphalinux.h.
311         * configure: Rebuild.
312         * hosts/alphalinux.h: New file.
313         * trad-core.c (trad_unix_core_file_p): Cast u.u_ar0 to bfd_vma,
314         not int.
315
316 Tue Oct 31 12:34:11 1995  Ian Lance Taylor  <[email protected]>
317
318         * coffcode.h (coff_slurp_symbol_table): Accept C_BCOMM and
319         C_ECOMM storage classes.
320
321         * xcofflink.c (xcoff_mark_symbol): New static function, broken out
322         of xcoff_mark.
323         (xcoff_mark): Call xcoff_mark_symbol.
324         (bfd_xcoff_export_symbol): Call xcoff_mark_symbol.
325         (bfd_xcoff_link_count_reloc): Call xcoff_mark_symbol rather than
326         doing it by hand.
327         (xcoff_build_ldsyms): Build a .loader symbol for an export symbol.
328
329 Mon Oct 30 14:53:48 1995  Ian Lance Taylor  <[email protected]>
330
331         * xcofflink.c (struct xcoff_final_link_info): Add new line_filepos
332         field.
333         (xcoff_find_reloc): New static function.
334         (xcoff_link_add_symbols): Use it.
335         (_bfd_xcoff_bfd_final_link): Set finfo.line_filepos.
336         (xcoff_link_input_bfd): Handle C_BINCL and C_EINCL.  Don't
337         relocate the value of C_DECL.
338
339         * elf.c (elf_fake_sections): Remove bogus BFD_ASSERT.
340
341 Sat Oct 28 01:25:34 1995  steve chamberlain  <[email protected]>
342
343         * cofflink.c (_bfd_coff_generic_relocate_section): Make
344         callback decide what goes in .relocs.
345         * pe[i]-i386.c (TARGET_UNDERSCORE): Define.
346         * peicode.h (pe_mkobject_hook): Only copy aouthdr if
347         there is one.
348
349 Sat Oct 28 01:51:02 1995  Ian Lance Taylor  <[email protected]>
350
351         * xcofflink.c (xcoff_link_add_symbols): Handle csects in the
352         absolute section.
353
354 Fri Oct 27 18:14:39 1995  Ian Lance Taylor  <[email protected]>
355
356         * xcofflink.c: More improvements, mostly to fix handling of
357         constructors and a few other special cases.
358         * coff-rs6000.c (rs6000coff_vec): Set symbol_leading_char back to
359         zero, reverting yesterday's change.
360         * bfd-in.h (bfd_xcoff_link_record_set): Declare.
361         (bfd_xcoff_link_count_reloc): Declare.
362         (bfd_xcoff_record_link_assignment): Declare.
363         * bfd-in2.h: Rebuild.
364
365 Fri Oct 27 14:42:15 1995  Niklas Hallqvist  <[email protected]>
366
367         * PORTING, aout-arm.c, aout-encap.c, aout-rce.c, aout-target.h,
368         aoutx.h, gen-aout.c, host-aout.c, hp300bsd.c, i386aout.c
369         i386bsd.c, i386dynix.c, i386linux.c, i386lynx.c, i386mach3.c,
370         i386netbsd.c, m68klynx.c, m88kmach3.c, mipsbsd.c, newsos3.c,
371         ns32knetbsd.c, pc532-mach.c, riscix.c, sparclynx.c, sparcnetbsd.c:
372         Change PAGE_SIZE to TARGET_PAGE_SIZE.
373
374         * m68knetbsd.c: Ditto as well as add support for the m68k4k object
375         format.
376
377         * netbsd.h: Double ditto (incl. m68k4k support).  NetBSD's text
378         segments includes the a.out header.  See to that the magic number
379         *always* is big-endian.
380
381         * config.bfd: Add m68*-hp*-netbsd* case.  Cross-pollinate m68k and
382         m68k4k NetBSD configurations.
383
384         * configure.in, configure: Separate i386 & mips NetBSD
385         configurations from other BSD ones.  Don't assume DEC is the only
386         thing NetBSD/mips run on.  Add {m68k,ns32k,sparc}-*-netbsd*
387         configurations.  Add support for m68k4k NetBSD object format.
388
389         * libaout.h: Added M_68K4K_NETBSD magic.
390
391         * m68k4knetbsd.c: New file.
392         
393         * hosts/{m68k,sparc}nbsd.h: Don't define HOST_BIG_ENDIAN_P.
394
395         * hosts/nbsd.h: Define HOST_BIG_ENDIAN_P according to
396         <machine/endian.h>.
397
398         * hosts/mipsnbsd.h: New file.
399         
400 start-sanitize-gm
401 Fri Oct 27 09:41:51 1995  Stu Grossman  ([email protected])
402
403         * config.bfd:  Add config stuff for mips*-*-magic* to set
404         targ_defvec to ecoff_big_vec.
405
406 end-sanitize-gm
407 Thu Oct 26 14:16:47 1995  Ian Lance Taylor  <[email protected]>
408
409         * xcofflink.c: Numerous changes to get closer to a working XCOFF
410         linker.
411         * libcoff-in.h (struct xcoff_tdata): Add full_aouthdr,
412         toc_section, and entry_section fields.
413         (struct xcoff_section_tdata): Remove ldrel_count field.
414         * libcoff.h: Rebuild.
415         * coffcode.h (coff_mkobject_hook): Initialize new xcoff_data
416         fields.
417         (coff_compute_section_file_positions): If RS6000COFF_C, generate
418         full a.out header if full_aouthdr is set in xcoff_data.
419         (coff_write_object_contents): Likewise.  Set o_snentry and o_sntoc
420         based on sections stored in xcoff_data.
421         * coff-rs6000.c (xcoff_copy_private_bfd_data): Copy new xcoff_data
422         fields.
423         (xcoff_reloc_type_lookup): Handle BFD_RELOC_CTOR.
424         (rs6000coff_vec): Set symbol_leading_char to '.'.
425         * coffgen.c (coff_get_symbol_info): If fix_value is set, fix the
426         value stored in ret rather than returning a pointer value.
427         
428 Wed Oct 25 23:10:39 1995  Michael Meissner  <[email protected]>
429
430         * config.bfd (powerpc{,le}-{elf,sysv4,eabi,solaris2}): Remove MAC
431         format for now.
432
433 Wed Oct 25 16:19:27 1995  Jeffrey A Law  ([email protected])
434
435         * som.c (som_slurp_string_table): Allocate the strings with malloc
436         since they're free'd by free_cached_info.
437         (som_slurp_symbol_table): Similarly for the symbol table.
438
439 Wed Oct 25 14:59:22 1995  Per Bothner  <[email protected]>
440
441         * Makefile.in (diststuff):  Don't make headers.
442
443 Wed Oct 25 11:32:54 1995  Ian Lance Taylor  <[email protected]>
444
445         * Makefile.in: Rebuild dependencies.
446
447         * sunos.c (bfd_sunos_record_link_assignment): Don't do anything if
448         output_bfd is not SunOS.
449         (bfd_sunos_size_dynamic_sections): Likewise.  Don't scan relocs of
450         non-SunOS input files.
451
452         * xcofflink.c: Extensive changes to support linking shared objects
453         and generating a .loader section.
454         * libcoff-in.h (struct xcoff_tdata): Add import_file_id field.
455         (struct xcoff_section_tdata): Add lineno_count, first_symndx,
456         last_symndx, and ldrel_count fields.
457         * libcoff.h: Rebuild.
458         * coff-rs6000.c (xcoff_howto_table): Correct reloc names.
459         * coffcode.h (styp_to_sec_flags): Don't set any flags if STYP_PAD
460         is set.
461         * bfd-in.h (bfd_xcoff_import_symbol): Declare.
462         (bfd_xcoff_export_symbol): Declare.
463         (bfd_xcoff_size_dynamic_sections): Declare.
464         * bfd-in2.h: Rebuild.
465
466 Tue Oct 24 17:44:20 1995  Stan Shebs  <[email protected]>
467
468         * configure.in: Add xcofflink.o to pmac_xcoff_vec.
469         * configure: Rebuild.
470         * mpw-config.in: Add xcofflink.c.o to powerpc-apple-macos.
471         * coff-pmac.c: Include coff-rs6000.c instead of duplicating its
472         contents.
473         (pmac_xcoff_vec): Update to use new xcoff support.
474         * coff-rs6000.c (xcoff_generic_stat_arch_elt): Make static.
475         (xcoff_write_armap): Declare buf as unsigned char.
476         * xcofflink.c (xcoff_link_add_symbols): Declare a local as PTR.
477
478         * mpw-make.sed: Generalize subdir_do edit.
479         
480 Tue Oct 24 10:25:01 1995  Jeffrey A Law  ([email protected])
481
482         * hppabsd-core.c (make_bfd_asection): Initialize asect->filepos
483         correctly.  Don't initialize asect->vma.
484
485 Fri Oct 20 13:23:48 1995  Ken Raeburn  <[email protected]>
486
487         * opncls.c (_bfd_new_bfd): If _bfd_chunksize wasn't preset, use
488         something a little less than the page size.
489
490 Thu Oct 19 13:06:09 1995  Ian Lance Taylor  <[email protected]>
491
492         * coff-i960.c (coff_i960_adjust_symndx): Clear *adjustedp.
493
494 Wed Oct 18 16:20:08 1995  steve chamberlain  <[email protected]>
495
496         * coff-i386.c (coff_i386_reloc_type_lookup): New.
497         * coffcode.h (coff_write_object_contents): If .bss is before
498         .data us that as data_start.
499         * cofflink.c (_bfd_coff_generic_relocate_section): Get reloc
500         calc correct.
501         * peicode.h (add_data_entry): Use _cooked_size of data directory.
502         (coff_swap_outhdr_out): Hardwire in version number.
503         
504 Wed Oct 18 16:50:54 1995  Ken Raeburn  <[email protected]>
505
506         * sunos.c (sunos_add_dynamic_symbols): Rename local variables
507         major and minor to *_vno, since the former are also macros in
508         SunOS header files.  Cast result of bfd_alloc to appropriate
509         type.
510
511         * coffgen.c (coff_find_nearest_line): Cast used_by_bfd value
512         before assigning to sec_data.
513
514 Wed Oct 18 13:25:17 1995  Ian Lance Taylor  <[email protected]>
515
516         * ecoff.c (_bfd_ecoff_find_nearest_line): The offset argument is
517         now relative to the section, not absolute.
518         * ecofflink.c (_bfd_ecoff_locate_line): Use the right symbol to
519         get the file name when there is a N_SO directory name.  When
520         handling stabs, remember that section->vma was added to the
521         offset.
522
523 Tue Oct 17 18:24:54 1995  Ian Lance Taylor  <[email protected]>
524
525         * sunos.c (struct sunos_link_hash_table): Add needed field.
526         (sunos_link_hash_table_create): Call bfd_release, not free.
527         (sunos_link_hash_table_create): Initialize needed field.
528         (sunos_add_dynamic_symbols): Record needed objects.
529         (bfd_sunos_get_needed_list): New function.
530         * bfd-in.h (bfd_sunos_get_needed_list): Declare.
531         * bfd-in2.h: Rebuild.
532
533 Mon Oct 16 14:43:59 1995  steve chamberlain  <[email protected]>
534
535         * libcoff-in.h (pe_data_type.in_reloc_p): New.
536
537 Mon Oct 16 10:52:50 1995  Ian Lance Taylor  <[email protected]>
538
539         * bfd-in.h (struct bfd_link_needed_list): Rename from
540         bfd_elf_link_needed_list.
541         * bfd-in2.h: Rebuild.
542         * elf.c, elflink.h, libelf.h: Corresponding changes.
543
544         Add start at AIX linker support; no shared libraries yet.
545         * xcofflink.c: New file.
546         * configure.in (rs600coff_vec): Use xcofflink.o.
547         * configure: Rebuild.
548         * libcoff-in.h (struct xcoff_tdata): Add csects and debug_indices
549         fields.
550         (struct xcoff_section_tdata): Define.
551         (xcoff_section_data): Define macro.
552         (_bfd_xcoff_bfd_link_hash_table_create): Declare.
553         (_bfd_xcoff_bfd_link_add_symbols): Declare.
554         (_bfd_xcoff_bfd_final_link): Declare.
555         (_bfd_ppc_xcoff_relocate_section): Declare.
556         * libcoff.h: Rebuild.
557         * coff-rs6000.c: Clean up a bit.
558         (xcoff_mkobject): Default modtype to 1L, not RE.  Initialize
559         cputype, csects, and debug_indices.
560         (xcoff_copy_private_bfd_data): Copy cputype.
561         (xcoff_howto_table): Rename from rs6000coff_howto_table.
562         (xcoff_rtype2howto): Rename from rs6000coff_rtype2howto.
563         (xcoff_reloc_type_lookup): Rename from
564         rs6000coff_reloc_type_lookup.
565         (coff_relocate_section): Define.
566         (_bfd_xcoff_sizeof_headers): Define.
567         (_bfd_xcoff_bfd_get_relocated_section_contents): Define.
568         (_bfd_xcoff_bfd_relax_section): Define.
569         (_bfd_xcoff_bfd_link_split_section): Define.
570         (rs6000coff_vec): For BFD_JUMP_TABLE_LINK, use _bfd_xcoff, not
571         coff.
572         * coffcode.h (coff_compute_section_file_positions): If AIX,
573         increment sofar by SMALL_AOUTSZ if not executable.
574         (coff_write_object_contents): If AIX, always output an a.out
575         header; if not executable, header size of SMALL_AOUTSZ.
576         * hash.c (struct bfd_strtab_hash): Add xcoff field.
577         (_bfd_stringtab_init): Initialize xcoff field.
578         (_bfd_xcoff_stringtab_init): New function.
579         (_bfd_stringtab_add): In XCOFF mode, leave two bytes for length.
580         (_bfd_stringtab_emit): In XCOFF mode, write out length.
581         * libbfd-in.h (_bfd_xcoff_stringtab_init): Declare.
582         * libbfd.h: Rebuild.
583         * Makefile.in: Rebuild dependencies.
584         (BFD32_BACKENDS): Add xcofflink.o.
585         (CFILES): Add xcofflink.c.
586
587         * elf32-mips.c (mips_elf_symbol_processing): Set SEC_ALLOC, not
588         SEC_NO_FLAGS, for .acommon section.  From Peter Schauer
589         <[email protected]>.
590
591 Sat Oct 14 21:36:02 1995  Michael Meissner  <[email protected]>
592
593         * coff-ppc.c (in_reloc_p): Add, clone from coff-i386.c.
594
595 Fri Oct 13 17:48:43 1995  Ken Raeburn  <[email protected]>
596
597         * acconfig.h (HAVE_SYS_PROCFS_H): Undef, with comment.
598         * config.in: Regenerated.
599
600         * opncls.c (getpagesize) [!HAVE_GETPAGESIZE]: Define as 2048.
601         (_bfd_chunksize): New variable.
602         (_bfd_new_bfd): Set it to getpagesize() if negative, and use it
603         for obstack chunk size.
604         * configure.in: Check for getpagesize.
605         * configure: Regenerated.
606
607         Mon Sep 25 22:49:32 1995  Andreas Schwab  <[email protected]>
608
609         * trad-core.c (rawptr): Make it a local variable of
610         ptrace_unix_core_file_p.
611
612 Fri Oct 13 11:22:01 1995  steve chamberlain  <[email protected]>
613
614         * coff-arm.c (in_reloc_p): New.
615         * coff-i386.c (in_reloc_p): New.
616         * coffcode.h: Allways include peicode.h if COFF_WITH_PE.
617         (coff_write_object_contents): Only set has_reloc_section
618         if PE_IMAGE.
619         * cofflink.c (_bfd_coff_generic_relocate_section): Call
620         in_reloc_p to decide if reloc should be emitted.
621         * libcoff.h (pe_data_type.in_reloc_p): New.
622         * peicode.h (pe_mkobject): Initialize in_reloc_p.
623
624 Wed Oct 11 00:49:29 1995  Ian Lance Taylor  <[email protected]>
625
626         * cofflink.c (_bfd_coff_internal_syment_name): Move to coffgen.c.
627         (_bfd_coff_read_internal_relocs): Likewise.
628         * coffgen.c (_bfd_coff_internal_syment_name): Copy from coffgen.c.
629         (_bfd_coff_read_internal_relocs): Likewise.
630
631         * elflink.h (elf_link_add_object_symbols): Correct conditions
632         under which type and size change warnings are issued.
633
634 Tue Oct 10 18:32:46 1995  Ian Lance Taylor  <[email protected]>
635
636         * coffgen.c (coff_count_linenumbers): Don't count line numbers for
637         a symbol which is not in a real section.
638         (coff_write_native_symbol): Corresponding change.
639
640         * cofflink.c (_bfd_coff_link_hash_newfunc): Rename from
641         coff_link_hash_newfunc and make non-static.
642         (_bfd_coff_link_hash_table_init): New function, broken out of
643         _bfd_coff_link_hash_table_create.
644         (_bfd_coff_link_hash_table_create): Use it.
645         (process_embedded_commands): Make static.
646         * libcoff-in.h ((_bfd_coff_link_hash_newfunc): Declare.
647         (_bfd_coff_link_hash_table_init): Declare.
648         * libcoff.h: Rebuild.
649
650         * coffcode.h (coff_mkobject_hook): If RS6000COFF_C, set cputype
651         field in XCOFF tdata.
652         (coff_set_arch_mach_hook): Check ifdef RS6000COFF_C, not ifdef
653         U802ROMAGIC, for clarity.  Try to set arch and machine correctly
654         based on cputype stored in a.out header, or in n_type of initial
655         .file symbol.
656         (coff_write_object_contents): Set cputype correctly in a.out
657         header.
658         (coff_slurp_symbol_table): Add casts to file_ptr to avoid
659         warnings.
660         * coffswap.h (coff_swap_aouthdr_in): Swap in cputype field.
661         (coff_swap_aouthdr_out): Swap out cputype field.  Don't clear
662         old resv1 field.
663         * libcoff-in.h (struct xcoff_tdata): Add cputype field.
664         * libcoff.h: Rebuild.
665
666         * cpu-rs6000.c (rs6000_compatible): New static function.
667         (bfd_rs6000_arch): Use it.
668         * cpu-powerpc.c (powerpc_compatible): New static function.
669         (arch_info_struct): Define various flavours of PowerPC.
670         (bfd_powerpc_arch): Use powerpc_compatible.  Point at
671         arch_info_struct.
672
673 Tue Oct 10 10:50:46 1995  Fred Fish  <[email protected]>
674
675         * Makefile.in (FLAGS_TO_PASS):  Remove BISON.
676
677 Tue Oct 10 01:28:29 1995  Ian Lance Taylor  <[email protected]>
678
679         * elflink.h (elf_link_add_object_symbols): Don't warn about
680         changing the size or type if the old definition was weak.
681
682 Mon Oct  9 11:24:08 1995  Ian Lance Taylor  <[email protected]>
683
684         * coffcode.h (combined_entry_type): Add fix_line field.
685         (coff_slurp_line_table): Warn if we try to set the lineno field of
686         a symbol twice.
687         (coff_slurp_symbol_table): If RS6000COFF_C, handle C_BINCL and
688         C_EINCL by setting fix_line.  Fix C_BSTAT symbol value.
689         * coffgen.c (coff_mangle_symbols): Handle fix_line.
690         (coff_write_symbol): Only use N_DEBUG if the symbol is in the
691         absolute section.
692         (coff_print_symbol): Print fix_value symbols in a useful fashion.
693         * libcoff.h: Rebuild.
694
695         * libcoff-in.h (struct xcoff_tdata): Define.
696         (xcoff_data): Define.
697         * bfd.c (struct _bfd): Add xcoff_obj_data field to tdata union.
698         * bfd-in2.h, libcoff.h: Rebuild.
699         * coff-rs6000.c (xcoff_mkobject): New static function.
700         (coff_mkobject): Define.
701         (xcoff_copy_private_bfd_data): New static function.
702         (coff_bfd_copy_private_bfd_data): Define.
703         (rs6000coff_howto_table): Change R_TOC complain_on_overflow from
704         signed to bitfield.
705         (rs6000coff_vec): Add DYNAMIC to object_flags.
706         * coffcode.h (sec_to_styp_flags): If RS6000COFF_C, handle .pad and
707         .loader sections specially.
708         (coff_new_section_hook): If RS6000COFF_C, get the .text and .data
709         section alignment from the XCOFF tdata information.
710         (coff_mkobject_hook): If RS6000COFF_C, set DYNAMIC based on
711         F_SHROBJ, and copy the extra a.out header information into the
712         XCOFF tdata structure.
713         (coff_write_object_contents): If RS6000COFF_C, set F_SHROBJ,
714         F_DYNLOAD and the extra a.out header information.
715         (coff_slurp_symbol_table): Set BSF_NOT_AT_END for a C_EXT or
716         C_HIDEXT symbol with attached csect information.
717         * coffswap.h (coff_swap_aouthdr_in): If RS6000COFF_C, swap
718         in the o_maxdata field.
719         (coff_swap_aouthdr_out): If RS6000COFF_C, swap extra XCOFF fields.
720         * coffgen.c (coff_renumber_symbols): Don't move any symbol to the
721         end if BSF_NOT_AT_END is set.
722
723         * targets.c (bfd_target): Rename _bfd_read_ar_hdr field to
724         _bfd_read_ar_hdr_fn.
725         * libbfd-in.h (_bfd_read_ar_hdr): Update accordingly.
726         * bfd-in2.h, libbfd.h: Rebuild.
727         * archive.c (_bfd_get_elt_at_filepos): Cast _bfd_read_ar_hdr
728         return value.
729         (do_slurp_bsd_armap, do_slurp_coff_armap): Likewise.
730         (bfd_slurp_bsd_armap_f2): Likewise.
731         (_bfd_slurp_extended_name_table): Likewise.
732
733 Fri Oct  6 16:18:35 1995  Ken Raeburn  <[email protected]>
734
735         Mon Sep 25 22:49:32 1995  Andreas Schwab  <[email protected]>
736
737         * archive.c (bfd_get_next_mapent): Return BFD_NO_MORE_SYMBOLS
738         when the symbol table is empty.
739
740         * elf32-m68k.c (elf_m68k_size_dynamic_sections): Don't reserve
741         space for section symbols, since we don't output them either.
742         (elf_m68k_adjust_dynindx): Removed.
743
744         * ptrace-core.c (rawptr): Make it a local variable of
745         ptrace_unix_core_file_p.
746
747 Fri Oct  6 12:24:47 1995  Michael Meissner  <[email protected]>
748
749         * coff-rs6000.c (xcoff_write_archive_contents): Return false, not
750         NULL.
751
752         * config.bfd (powerpc{,le}-{elf,sysv4,eabi,solaris2}): Add NT, and
753         Mac object file formats.
754
755 Fri Oct  6 12:04:02 1995  Ian Lance Taylor  <[email protected]>
756
757         * coffgen.c (coff_fix_symbol_name): Don't try to set up file
758         auxent if there isn't one.
759         (coff_write_symbols): If there is no file auxent, use SYMNMLEN
760         rather than FILNMLEN as the maximum name length.
761
762         * coffcode.h (bfd_coff_backend_data): Add new field
763         _bfd_coff_print_aux.
764         (bfd_coff_print_aux): New static function.
765         (coff_pointerize_aux_hook (RS6000COFF_C version)): Pointerize the
766         scnlen field of an XTY_LD csect aux entry.
767         (coff_print_aux): New static function.
768         (coff_slurp_symbol_table): Don't pointerize scnlen field; now done
769         in coff_pointerize_aux_hook.
770         (bfd_coff_std_swap_table): Initialize new field.
771         * coffgen.c (coff_print_symbol): Call bfd_coff_print_aux.
772         * libcoff.h: Rebuild.
773         * coff-alpha.c (alpha_ecoff_backend_data): Initialize new field.
774         * coff-mips.c (mips_ecoff_backend_data): Likewise.
775
776         * coffcode.h (coff_write_object_contents): On AIX, clear F_RELFLG
777         if there are symbols, for native AIX ld compatibility.
778
779         * coffcode.h (bfd_coff_backend_data): Add new field
780         _bfd_coff_pointerize_aux_hook.
781         (coff_pointerize_aux_hook): Define as a function if RS6000COFF_C
782         or I960, and as 0 otherwise.
783         (bfd_coff_std_swap_table): Initialize new field.
784         * libcoff.h: Rebuild.
785         * coffgen.c (coff_pointerize_aux): Change parameters  to take
786         symbol pointer instead of type and class, and to take aux index.
787         Call _bfd_coff_pointerize_aux_hook if it is defined.
788         (coff_get_normalized_symtab): Always call coff_pointerize_aux.
789         * coff-alpha.c (alpha_ecoff_backend_data): Initialize all fields.
790         * coff-mips.c (mips_ecoff_backend_data): Likewise.
791
792         * coff-rs6000.c: Add full support for AIX archives.  Rewrite old
793         read-only/host-only support.
794
795         * coffcode.h (coff_slurp_symbol_table): Set C_HIDEXT symbols to be
796         BSF_LOCAL.
797         (OTHER_GLOBAL_CLASS): Do not define to be C_HIDEXT if
798         RS6000COFF_C.
799
800         * targets.c (bfd_target): Add _bfd_read_ar_hdr field.  Modify
801         BFD_JUMP_TABLE_ARCHIVE accordingly.
802         * libbfd-in.h (_bfd_snarf_ar_hdr): Don't declare.
803         (_bfd_compute_and_write_armap): Declare.
804         (_bfd_generic_read_ar_hdr): Declare.
805         (_bfd_read_ar_hdr): Define.
806         (_bfd_noarchive_read_ar_hdr): Define.
807         (_bfd_archive_bsd_read_ar_hdr): Define.
808         (_bfd_archive_coff_read_ar_hdr): Define.
809         * archive.c: Change all callers of _bfd_snarf_ar_hdr to call
810         _bfd_read_ar_hdr instead.
811         (_bfd_generic_read_ar_hdr): Rename from _bfd_snarf_ar_hdr.
812         (_bfd_compute_and_write_armap): Rename from
813         compute_and_write_armap.  Make non-static.  Change all callers.
814         * ecoff.c (_bfd_ecoff_slurp_armap): Call _bfd_read_ar_hdr rather
815         than _bfd_snarf_ar_hdr.
816         * aout-target.h (MY_read_ar_hdr): Define if not defined.
817         * ieee.c (ieee_read_ar_hdr): Define.
818         * libecoff.h (_bfd_ecoff_read_ar_hdr): Define.
819         * oasys.c (oasys_read_ar_hdr): Define.
820         * som.c (som_read_ar_hdr): Define.
821         * bfd-in2.h, libbfd.h: Rebuild.
822
823 Thu Oct  5 14:04:07 1995  steve chamberlain  <[email protected]>
824
825         * peicode.c (coff_swap_filehdr_in): If symptr is
826         zero, there aren't any symbols, even if nsyms is set.
827
828 Thu Oct  5 11:45:02 1995  Ian Lance Taylor  <[email protected]>
829
830         * libecoff.h (struct ecoff_backend_data): Add adjust_headers
831         field.
832         * ecoff.c (ecoff_sec_to_styp_flags): Check for various Alpha
833         sections, and set styp correctly for them: .got, .hash, .dynamic,
834         .liblist, .rel.dyn, .conflic, .dynstr, .dynsym, .comment.
835         (_bfd_ecoff_styp_to_sec_flags): Check for various Alpha section
836         types.
837         (ecoff_sort_hdrs): New static function.
838         (ecoff_compute_section_file_positions): Return boolean, not void.
839         Sort the sections by VMA before looking through them.  Put the
840         first non SEC_ALLOC section on a new page.  Put every SEC_ALLOC
841         section on an appropriate boundary within the page.
842         (ecoff_compute_reloc_file_positions): Check return value of
843         ecoff_compute_section_file_positions.
844         (_bfd_ecoff_set_section_contents): Likewise.
845         (_bfd_ecoff_write_object_contents): Check for various Alpha
846         section types when incrementing text_size and data_size.  Call
847         adjust_headers backend function if it exists.
848         * coff-alpha.c (alpha_adjust_headers): New static function.
849         (alpha_ecoff_backend_data): Initialize adjust_headers field.
850         * coff-mips.c (mips_ecoff_backend_data): Likewise.
851
852         * hosts/i386bsd.h: Restore file incorrectly deleted on Sep 6.
853
854 Wed Oct  4 18:15:02 1995  Jeff Law  ([email protected])
855
856         * rs6000-core.c (CORE_VERSION_1): Use CORE_VERSION_1 instead
857         of ALTERNATE_AIX_CORE_FORMAT.
858         * configure.in (aix4): No longer need CORE_FLAGS.
859         * configure: Updated.
860
861 Wed Oct  4 15:36:36 1995  Ken Raeburn  <[email protected]>
862
863         NS32k changes from Ian Dall:
864         * aoutx.h (MY_final_link_relocate, MY_relocate_contents): New
865         macros.
866         (aout_link_input_section_std, aout_link_input_section_ext,
867         aout_link_reloc_link_order): Call them instead of _bfd_*
868         versions.
869         * aout-target.h (MY_exec_header_not_counted): New macro, defaults
870         to zero.
871         (backend_data): Use it instead of hardcoded zero.
872
873         * aout-ns32k.c (CTOR_TABLE_RELOC_HOWTO): New macro.
874         (MY_swap_std_reloc_out): Use udata.i for KEEPIT, don't call stoi.
875
876         * ns32knetbsd.c: Include bfd.h.
877         (MY_text_includes_header, MY_bfd_reloc_type_lookup): New macros.
878         (MY_bfd_reloc_type_lookup): Declare function too.
879         * pc532-mach.c (set_sizes): Don't declare.
880         (MY_text_includes_header, MY_exec_header_not_counted): Define.
881         (backend_data, MY_backend_data): Don't define.
882
883         * config.bfd: Treat ns32k-pc532-ux* like ns32k-pc532-mach*, and
884         ns32k-*-lites* like ns32k-*-netbsd*.
885
886         * hosts/nbsd.h: Swap order of sys/vmparam.h and sys/param.h, to
887         compile on lites.
888
889 Wed Oct  4 14:15:52 1995  Ian Lance Taylor  <[email protected]>
890
891         * coffcode.h (coff_write_object_contents): Restore setting
892         f_timdat to 0, deleted on August 22.
893
894 Tue Oct  3 16:28:32 1995  steve chamberlain  <[email protected]>
895
896         * coffcode.h (coff_bfd_copy_private_symbol_data,
897         coff_bfd_copy_private_section_data,
898         coff_bfd_copy_private_bfd_data): ifdef to allow overrides.
899         * peicode.h (coff_bfd_copy_private_bfd_data): New
900         (pe_bfd_copy_private_bfd_data): New.
901         (coff_swap_scnhdr_in): Swap bss size into the right place.
902         (pe_print_private_bfd_data): Add some newlines.
903
904 Tue Oct  3 11:53:04 1995  Jeff Law  ([email protected])
905
906         * som.c (setup_sections): Don't die if a space has no subspaces.
907
908 Mon Oct  2 14:08:55 1995  Ian Lance Taylor  <[email protected]>
909
910         * elflink.h (elf_link_add_object_symbols): Don't let a weak
911         dynamic symbol override a common symbol.  Don't change the size or
912         type if they have been set and the new symbol is not a definition.
913         Warn if the size or type changes.
914
915 Sun Oct  1 01:34:41 1995  Jeff Law  ([email protected])
916
917         * som.c (som_begin_writing): Don't write the symbol table or
918         symbol  strings.
919         (som_finish_writing): Write them here.  Place them after the
920         subspace data, but before the relocs.
921
922 Fri Sep 29 11:01:55 1995  Ian Lance Taylor  <[email protected]>
923
924         * sunos.c (sunos_add_one_symbol): Just pass false, not
925         info->shared_library, to sunos_create_dynamic_sections.
926         (sunos_scan_ext_relocs): Don't warn about a reloc in the .text
927         section.
928         (sunos_check_dynamic_reloc): Remove .text section assertion.
929
930 Thu Sep 28 18:48:47 1995  Stan Shebs  <[email protected]>
931
932         * config.bfd: Add powerpc-*-macos*, powerpc-*-mpw*.
933         * configure, configure.in: Add pmac_xcoff_vec case.
934         * Makefile.in (BFD32_BACKENDS): Add coff-pmac.o.
935         * coff-pmac.c: New file, PowerMac XCOFF support.
936         * coffcode.h (coff_set_arch_mach_hook): Add PowerMac case.
937         * targets.c (pmac_xcoff_vec): Declare.
938
939         * mpw-config.in: Various changes to be compatible with the
940         autoconf-based configury.
941         * mpw-make.sed: New file, sed commands to translate Unix
942         makefile into MPW syntax.
943         * mpw-make.in: Remove.
944         * hosts/mpw.h: Remove.
945         * bfd-in.h, bfd-in2.h: If MPW, include the file that defines
946         true and false as enums, then define TRUE_FALSE_ALREADY_DEFINED.
947
948 Thu Sep 28 17:06:23 1995  steve chamberlain  <[email protected]>
949
950         * binary.c (binary_get_symtab): Return an empty string on error.
951         * opncls.c (bfd_fdpenr): Change WIN32 restriction to WINGDB.
952
953 Thu Sep 28 15:30:44 1995  Kim Knuttila  <krk@nellie>
954
955         * coff-ppc.c: Reformatted according to gnu conventions
956                       Removed irrelevant "if 0" code
957
958 Thu Sep 28 11:19:53 1995  Ian Lance Taylor  <[email protected]>
959
960         * hp300hpux.c (convert_sym_type): Treat secondary symbols as weak
961         symbols rather than as indirect symbols.
962         (MY(slurp_symbol_table)): Don't do anything special about
963         secondary symbols.
964
965         * coffcode.h (coff_new_section_hook): Make sure that the alignment
966         of .ctors and .dtors sections is no larger than 2.
967
968         * sunos.c (sunos_add_one_symbol): Don't change
969         bfd_link_hash_common to bfd_link_hash_new, since it may be on the
970         undef list.
971         (bfd_sunos_record_link_assignment): Don't put __DYNAMIC in the
972         dynamic symbols when creating a shared library.
973         (sunos_scan_ext_relocs): Handle relocs correctly when creating a
974         shared library.
975         (sunos_scan_dynamic_symbol): Don't mark the __DYNAMIC symbol as
976         written even if it is not defined in a regular object.
977         (sunos_write_dynamic_symbol): Use plt_offset for the address of
978         the jump table reloc.  Add an assertion.  Use RELOC_JMP_SLOT
979         rather than the constant 22.
980         (sunos_check_dynamic_reloc): Handle creating a shared library.
981         (sunos_finish_dynamic_link): Set the first entry in the GOT to
982         zero when creating a shared library.
983         * aoutx.h (NAME(aout,final_link)): If there is a symbol __DYNAMIC,
984         write it out at the start of the symbol table.
985
986         * Makefile.in (BFD32_BACKENDS): Add coff-arm.o.
987
988 Thu Sep 28 00:58:05 1995  Doug Evans  <[email protected]>
989
990         * config.bfd: Add arm-*-coff.
991         * configure.in, configure: Add armcoff_{little,big}_vec.
992         * targets.c (armcoff_{little,big}_vec): Declare.
993         (bfd_target_vector): Add armcoff_{little,big}_vec.
994         * coff-arm.c (armcoff_{little,big}_vec): Always define.
995
996 Wed Sep 27 10:37:14 1995  Ian Lance Taylor  <[email protected]>
997
998         * targets.c (bfd_find_target): Remove debugging code.
999
1000 Wed Sep 27 07:23:39 1995  Kim Knuttila  <krk@nellie>
1001
1002         * coff-ppc.c, pe-ppc.c, pei-ppc.c: Initial bfd for coff/PE 
1003         support on powerpc.
1004         * Makefile.in: added *-ppc files
1005         * coffcode.h: ppc MAGIC, and use peicode.h rather than coffswap.h to
1006         allow pe based .o's to be shared with other tools on ppc/NT
1007         * config.bfd: added powerpc[le]-[pe|winnt] config support
1008         * configure, configure.in: added bfd_powerpc[le]_pe[i]_vec 
1009         * peicode.h: Added more section flags for PE on ppc
1010                      Added coff_swap_filehdr_out to allow peicode.h to be
1011                      used for non-image PE files on ppc.
1012                      Check for image, or not, before copying pe_opthdr
1013         * targets.c: Added new bfd's
1014         * targets.c: Removed two inactive bfds that shouldn't have made it this
1015                      far.
1016
1017 Tue Sep 26 14:06:41 1995  Michael Meissner  <[email protected]>
1018
1019         * elf32-ppc.c (ppc_reloc_type): Rename from reloc_type, and use
1020         explicit values to initialize all relocs.  Change all users.
1021         (ppc_elf_brtaken_inner): New function to handle branch predicition
1022         relocs.
1023         (ppc_elf_brtaken_reloc): Ditto.
1024         (ppc_elf_howto_raw): Use new functions.  Make sure all unsupported
1025         relocs use ppc_elf_unsupported_reloc.
1026         (ppc_elf_merge_private_bfd_data): Keep track of whether an error
1027         needs to be reported.
1028         (ppc_elf_relocate_section): Support branch prediction relocs.
1029
1030 Tue Sep 26 12:48:05 1995  Ian Lance Taylor  <[email protected]>
1031
1032         * bfd.c (bfd_assert): Remove \n from string passed to
1033         _bfd_error_handler.
1034
1035         * coff-i386.c: (TWO_DATA_SECS): Don't define.
1036         * coffcode.h (bfd_coff_backend_data): Remove _bfd_make_section_hook.
1037         (bfd_coff_make_section_hook): Don't define.
1038         (coff_make_section_hook): Remove.
1039         (sec_to_styp_flags): Remove TWO_DATA_SECS case.
1040         (styp_to_sec_flags): Likewise.
1041         (coff_write_object_contents): Likewise.
1042         (bfd_coff_std_swap_table): Don't initialize make_section_hook
1043         field.
1044         * libcoff.h: Rebuild.
1045         * coffgen.c (make_a_section_from_file): Just call
1046         bfd_make_section_anyway, not bfd_make_section or
1047         bfd_coff_make_section_hook.
1048         * ecoff.c (_bfd_ecoff_make_section_hook): Remove.
1049         * libecoff.h (_bfd_ecoff_make_section_hook): Don't declare.
1050         * coff-alpha.c (alpha_ecoff_backend_data): Don't initialize
1051         make_section_hook field.
1052         * coff-mips.c (mips_ecoff_backend_data): Likewise.
1053
1054         * aoutx.h (translate_from_native_sym_flags): Don't try to stuff
1055         pointers into value field for warning and indirect symbols; just
1056         leave the value field alone.
1057         * linker.c (generic_link_add_symbol_list): Use next symbol for
1058         warning and indirect symbols, rather than looking in symbol value.
1059         * ecoff.c (ecoff_set_symbol_info): Remove indirect_ptr_ptr
1060         parameter.  Change all callers.  Remove support for indirect
1061         symbols; it didn't work anyhow.
1062         (_bfd_ecoff_slurp_symbol_table): Remove indirect_ptr variable.
1063         * syms.c: Change comments about BSF_WARNING and BSF_INDIRECT.
1064         * bfd-in2.h: Rebuild.
1065
1066 Mon Sep 25 16:04:09 1995  Michael Meissner  <[email protected]>
1067
1068         * elf32-ppc.c (ppc_elf_howto_raw): For all 14-bit branch relocs,
1069         go back to telling the tools this reloc operates on 32 bits.
1070
1071 Mon Sep 25 11:48:02 1995  Ian Lance Taylor  <[email protected]>
1072
1073         * aout-adobe.c (aout_adobe_callback): Use _bfd_error_handler
1074         rather than a direct fprintf.
1075         * archive.c (_bfd_write_archive_contents): Likewise.
1076         * coffcode.h (coff_slurp_symbol_table): Likewise.
1077         * elf32-ppc.c (ppc_elf_merge_private_bfd_data): Likewise.
1078         (ppc_elf_unsupported_reloc): Likewise.
1079         (ppc_elf_relocate_section): Likewise.
1080         * i386linux.c (linux_tally_symbols): Likewise.
1081         (linux_finish_dynamic_link): Likewise.
1082         * osf-core.c (osf_core_core_file_p): Likewise.
1083         * rs6000-core.c (rs6000coff_get_section_contents): Likewise.
1084         * som.c (som_sizeof_headers): Likewise.
1085         * srec.c (srec_bad_byte): Likewise.
1086         * bfd.c (bfd_assert): Likewise.  Also change file to be const.
1087         * libbfd-in.h (bfd_assert): Declare first parameter const.
1088         * libbfd.h: Rebuild.
1089         * coff-a29k.c (a29k_reloc): Don't bother to fprintf; returning
1090         bfd_reloc_overflow is enough.
1091         * coff-h8300.c (rtype2howto): Don't bother to fprintf; just abort.
1092         * coff-h8500.c (rtype2howto): Likewise.
1093         * coff-z8k.c (rtype2howto): Likewise.
1094         * coffcode.h (dummy_reloc16_extra_cases): Likewise.
1095         * elf.c (_bfd_elf_get_lineno): Likewise.
1096         (_bfd_elf_no_info_to_howto): Likewise.
1097         (_bfd_elf_no_info_to_howto_rel): Likewise.
1098         * hp300hpux.c (convert_sym_type): Likewise.
1099         (MY(swap_std_reloc_in)): Likewise.
1100         * elf.c (bfd_section_from_shdr): Remove #if 0 sections.
1101
1102         * libaout.h (struct aoutdata): Add line_buf field.
1103         * aoutx.h (NAME(aout,find_nearest_line)): Remove statics buffer
1104         and filename_buffer.  Instead, use a malloc buffer stored in the
1105         new line_buf field.  Remove length restrictions.
1106
1107         * coffgen.c (string_size): Remove static variable.
1108         (debug_string_size, debug_string_section): Likewise.
1109         (coff_fix_symbol_name): Add string_size_p, debug_string_section_p,
1110         and debug_string_size_p parameters.  Use them instead of the
1111         global variables.  Change all callers.
1112         (coff_write_symbol): Likewise.
1113         (coff_write_alien_symbol, coff_write_native_symbol): Likewise.
1114         (coff_write_symbols): Add local variables to replace removed
1115         global variables.
1116
1117         * libcoff-in.h (struct coff_section_tdata): Add offset, i,
1118         function, and line_base fields.
1119         * libcoff.h: Rebuild.
1120         * coffgen.c (coff_find_nearest_line): Use section tdata to cache
1121         information, rather than using static variables.
1122
1123         * sunos.c (sunos_read_dynamic_info): Adjust offsets in an NMAGIC
1124         file.  From Peter DeWolf <[email protected]>.
1125
1126         * init.c (initialized): Remove static variable.
1127         (bfd_init): Don't bother setting initialized.
1128         (bfd_check_init): Remove.
1129         * opncls.c (_bfd_new_bfd): Don't call bfd_check_init.
1130         * libbfd.h: Rebuild.
1131
1132 Sat Sep 23 01:22:23 1995  Peter Schauer  ([email protected])
1133
1134         * rs6000-core.c (rs6000coff_core_p):  Don't check the core file
1135         size for full core dumps. Copy core file header to private data.
1136         (rs6000coff_core_file_failing_command,
1137         rs6000coff_core_file_failing_signal):  New functions to extract
1138         the file name and terminating signal from the core file.
1139         * coff-rs6000.c:  Use them.
1140
1141 Fri Sep 22 17:44:47 1995  Ian Lance Taylor  <[email protected]>
1142
1143         Change arch info to be const, initialized at compile time.
1144         * archures.c: Reindent many functions.  Change CONST to const.
1145         (bfd_arch_info_type): Make arch_name const.  Remove disassemble;
1146         nothing set it anyhow.  Make next const.
1147         (bfd_arch_info_list): Remove.
1148         (bfd_archures_list): Rename from archures_init_table.  Change from
1149         a table of function pointers to a table of bfd_arch_info_type
1150         structure addresses.
1151         (bfd_scan_arch): Rewrite accordingly.  Return a const pointer.
1152         (bfd_lookup_arch): Likewise.
1153         (bfd_set_arch_info): Rewrite accordingly.  Change argument to be a
1154         const pointer.
1155         (bfd_default_arch_struct): Make const.
1156         (bfd_arch_init, bfd_arch_linkin): Remove.
1157         (bfd_get_arch_info): Return a const pointer.
1158         * init.c (bfd_init): Don't call bfd_arch_init.
1159         * bfd.c (struct _bfd): Make arch_info const.
1160         * bfd-in2.h: Rebuild.
1161         * libbfd.h: Rebuild.
1162         * configure.in: Put & before everything in $selarchs.
1163         * configure: Rebuild.
1164         * cpu-*.c: Change bfd_*_arch from a function which calls
1165         bfd_arch_linkin to a const structure.
1166         * ieee.c (ieee_object_p): Make arch const.
1167
1168 Fri Sep 22 16:23:18 1995  Michael Meissner  <[email protected]>
1169
1170         * reloc.c (bfd_reloc_code_type): Add relocations to support all of
1171         PowerPC V.4.
1172         * bfd-in2.h: Regenerate.
1173         * libbfd.h: Regenerate.
1174
1175         * elf32-ppc.c (reloc_type): Update names to match current draft.
1176         (ppc_elf_howto_raw): Mark 14 bit relocs as short sized and PC
1177         relative.  Update names to current V.4 draft.
1178         (ppc_elf_reloc_type_lookup): Add support for more relocations.
1179         (ppc_elf_relocate_section): Rename relocations to match draft.
1180
1181 Thu Sep 21 21:53:18 1995  Michael Meissner  <[email protected]>
1182
1183         * elf32-ppc.c (ppc_elf_merge_private_bfd_data): Allow modules
1184         compiled with -mrelocatable-lib to be linked with either normal
1185         modules or -mrelocatable modules.
1186
1187 Wed Sep 20 12:03:26 1995  Ian Lance Taylor  <[email protected]>
1188
1189         * coffcode.h (coff_write_object_contents): Clear the vstamp field
1190         in the a.out header.
1191
1192         * aoutx.h (NAME(aout,swap_ext_reloc_out)): Don't set r_extern for
1193         a reloc against a local symbol, even if it's not a section.
1194
1195 Tue Sep 19 17:02:26 1995  Ian Lance Taylor  <[email protected]>
1196
1197         * targets.c (bfd_target): Remove unused align_power_min field.
1198         * bfd-in2.h: Rebuild.
1199         * All backends: Remove initialization of align_power_min.
1200
1201 Tue Sep 19 14:02:21 1995  steve chamberlain  <[email protected]>
1202
1203         * peicode.h (coff_swap_scnhdr_out): Get sizes for BSS right.
1204
1205 Mon Sep 18 14:35:01 1995  Arne H. Juul  <[email protected]>
1206
1207         * config.bfd (mips-dec-netbsd*): New target.
1208         * configure.host (mips-dec-netbsd*): New host.
1209         * configure.in (mips-dec-netbsd*): New native.
1210         * configure: Rebuild.
1211
1212 Fri Sep 15 10:24:36 1995  Ian Lance Taylor  <[email protected]>
1213
1214         Make the COFF backend linker merge common types:
1215         * cofflink.c (struct coff_debug_merge_element): Define.
1216         (struct coff_debug_merge_type): Define.
1217         (struct coff_debug_merge_hash_entry): Define.
1218         (struct coff_debug_merge_hash_table): Define.
1219         (coff_debug_merge_hash_table_init): Define.
1220         (coff_debug_merge_hash_table_free): Define.
1221         (coff_debug_merge_hash_lookup): Define.
1222         (struct coff_final_link_info): Add debug_merge field.
1223         (coff_debug_merge_hash_newfunc): New static function.
1224         (_bfd_coff_final_link): Allocate and free debug_merge table.
1225         (coff_link_input_bfd): Merge identical enum, struct and union
1226         types.
1227
1228 Thu Sep 14 14:53:58 1995  Ian Lance Taylor  <[email protected]>
1229
1230         Convert i960 COFF to use COFF backend linker.
1231         * coff-i960.c (coff_i960_relocate): Use a coff_section_data
1232         structure to store the symbol being used.
1233         (coff_i960_start_final_link): New static function.
1234         (coff_i960_relocate_section): New static function.
1235         (coff_i960_adjust_symndx): New static function.
1236         (coff_start_final_link): Define.
1237         (coff_relocate_section): Define.
1238         (coff_adjust_symndx): Define.
1239         * coffcode.h (bfd_coff_backend_data): Add new callback function
1240         _bfd_coff_start_final_link.
1241         (bfd_coff_start_final_link): Define.
1242         (coff_start_final_link): Define if not defined.
1243         (bfd_coff_std_swap_table): Add coff_start_final_link.
1244         * cofflink.c (_bfd_coff_internal_syment_name): Make globally
1245         visible.
1246         (_bfd_coff_final_link): Call bfd_coff_start_final_link if the
1247         function callback is not NULL.
1248         * libcoff-in.h (struct coff_section_tdata): Add tdata field.
1249         (_bfd_coff_internal_syment_name): Declare.
1250         * libcoff.h: Rebuild.
1251         * configure.in (icoff_big_vec): Add cofflink.o.
1252         (icoff_little_vec): Likewise.
1253         * configure: Rebuild.
1254
1255 Wed Sep 13 17:38:23 1995  Fred Fish  <[email protected]>
1256
1257         * Makefile.in (clean-info): Remove extraneous tab from line
1258         following action.
1259
1260 Wed Sep 13 13:27:53 1995  Ian Lance Taylor  <[email protected]>
1261
1262         * cofflink.c (coff_link_input_bfd): Fail if a section with no
1263         contents has relocs.
1264
1265 Thu Sep 12 12:45:34 1995  steve chamberlain  <[email protected]>
1266
1267         * coffcode.h (coff_compute_section_file_positions): Keep the
1268         raw size safe. 
1269         (coff_write_object_contents): Remember if it's a relocatable
1270         file.
1271         * libcoff-in.h (pe_data_type): New member 'has_reloc_section'
1272         * peicode.h (coff_swap_filehdr_out): Clear not-reloc flag
1273         if relocatable file. Swap out saved raw size.
1274
1275 Tue Sep 12 12:14:33 1995  Ian Lance Taylor  <[email protected]>
1276
1277         * Makefile.in (do_maintainer_clean): Rename from do_realclean.
1278         (maintainer-clean): Rename from realclean, passing
1279         maintainer-clean down to subdirectories, but leave realclean as a
1280         synonym.
1281
1282         * linker.c (_bfd_generic_link_add_one_symbol): Pass symbol name to
1283         warning callback.
1284
1285         * dep-in.sed: Remove config.h from generated dependencies.
1286
1287         * sunos.c (sunos_slurp_dynamic_symtab): New static function,
1288         broken out of sunos_canonicalize_dynamic_symtab.
1289         (sunos_canonicalize_dynamic_symtab): Call new function
1290         sunos_slurp_dynamic_symtab.
1291         (sunos_add_dynamic_symbols): Add three new parameters.  Return the
1292         dynamic symbol table to the caller.
1293         * aoutx.h (aout_link_add_symbols): Permit add_dynamic_symbols
1294         callback to override the symbols being read.
1295         * libaout.h (struct aout_backend_data): Add three new parameters
1296         to add_dynamic_symbols callback.
1297
1298         Extensive minor changes to avoid various gcc warnings.  Also:
1299         * Makefile.in (BFD32_BACKENDS): Remove coff-arm.o.
1300         * archures.c (bfd_arch_info_type): Change mach field from long to
1301         unsigned long.
1302         (bfd_lookup_arch): Change machine parameter from long to unsigned
1303         long.
1304
1305 Mon Sep 11 10:55:47 1995  Ian Lance Taylor  <[email protected]>
1306
1307         * sunos.c (sunos_scan_std_relocs): Fix BFD_ASSERT: it's OK to find
1308         a symbol with a non-zero plt_offset.
1309
1310 Fri Sep  8 11:47:24 1995  Ian Lance Taylor  <[email protected]>
1311
1312         * elfcode.h (align_file_position): Remove; not used.
1313
1314         * configure.in: Only check for <sys/procfs.h> on a native system,
1315         and make sure it defines prstatus_t.
1316         * configure: Rebuild.
1317
1318 Thu Sep  7 12:48:01 1995  Ian Lance Taylor  <[email protected]>
1319
1320         * sunos.c (sunos_write_dynamic_symbol): Correct m68k abort test.
1321
1322         * config.in: Rename from config.h.in.
1323         * configure.in: Call AC_CONFIG_HEADER with config.h:config.in.
1324         Check for config.h:config.in when creating stamp-h.
1325         * configure: Rebuild.
1326         * Makefile.in (stamp-h): Depend upon config.in rather than
1327         config.h.in.  Set CONFIG_HEADERS to config.h:config.in when
1328         calling config.status.
1329
1330         * Makefile.in (do_distclean): Remove config.h and stamp-h.
1331         (Makefile): Just rebuild Makefile.
1332         (config.h, stamp-h): New targets.
1333         * configure.in: Create stamp-h when rebuilding config.h.
1334         * configure: Rebuild.
1335
1336 Wed Sep  6 15:00:33 1995  Ian Lance Taylor  <[email protected]>
1337
1338         * configure.in: Call AC_CONFIG_HEADER.  Substitute
1339         HOST_64BIT_LONG.  Check that various header files exist.  Check
1340         that fcntl exists.  Call BFD_BINARY_FOPEN.  Check whether malloc
1341         and/or free need to be declared.  Don't make a link to sysdep.h.
1342         Define TRAD_HEADER for various hosts.
1343         * configure: Rebuild.
1344         * configure.host: Don't set my_host.  Add definitions taken from
1345         host header files for various entries.  Remove entries which now
1346         do nothing.
1347         * acconfig.h: New file.
1348         * config.h.in: New file, built by autoheader.
1349         * sysdep.h: New file.
1350         * Makefile.in (do_distclean): Don't remove sysdep.h.
1351         (RECONFIG): Remove.
1352         (LOCAL_H_DEPS): New variable.
1353         ($(BFD_LIBS)): Use $(LOCAL_H_DEPS) rather than libbfd.h and
1354         $(RECONFIG).
1355         ($(BFD_MACHINES), $(BFD_BACKENDS)): Likewise.
1356         ($(OPTIONAL_BACKENDS)): Likewise.
1357         (stmp-bfd.h): Just substitute for BFD_HOST_64BIT_LONG, rather than
1358         looking through sysdep.h.
1359         * bfd-in.h (BFD_HOST_64BIT_LONG): Define; set by Makefile.
1360         (BFD_HOST_64_BIT): Define based on BFD_HOST_64BIT_LONG.
1361         (fprintf_vma, sprintf_vma): Likewise.
1362         (int64_type, uint64_type): Don't define.
1363         * bfd-in2.h: Rebuild.
1364         * archures.c, bfd.c, srec.c: Include <ctype.h>.
1365         * elfcore.h: Check HAVE_SYS_PROCFS_H rather than HAVE_PROCFS.
1366         * lynx-core.c: Include stuff from old hosts/lynx.h.
1367         * opncls.c (bfd_fdopenr): Check HAVE_FNCTL and defined (F_GETFL),
1368         rather than NO_FCNTL.
1369         * targets.c (bfd_target_list): Check HOST_HPPAHPUX and ! __STDC__
1370         rather than NATIVE_HPPAHPUX_COMPILER.
1371         * trad-core.c: Don't include <errno.h>.  Include TRAD_HEADER if it
1372         is defined.
1373         * hosts/*.h: Remove all header files which merely include,
1374         declare, and define things.  Leave header files which define
1375         information needed by trad-core.c.
1376
1377         * aclocal.m4 (BFD_BINARY_FOPEN): Define.
1378         (BFD_CC_FOR_BUILD): Define.
1379         * configure.in: Use BFD_CC_FOR_BUILD.
1380         * configure: Rebuild.
1381
1382 Tue Sep  5 19:35:28 1995  Ian Lance Taylor  <[email protected]>
1383
1384         * aclocal.m4: Don't try to grep ../Makefile if it doesn't exist.
1385         * configure: Rebuild.
1386
1387         * coff-sparc.c (CALC_ADDEND): Don't set the addend to the value of
1388         a global symbol.
1389
1390 Tue Sep  5 12:48:26 1995  Jason Molenda   ([email protected])
1391
1392         * config.bfd: i386pe_ve -> i386pe_vec.
1393
1394 Mon Sep  4 14:02:43 1995  Ian Lance Taylor  <[email protected]>
1395
1396         * configure.host: Incorporate host Makefile fragments by setting
1397         shell variables.
1398         * configure.in: Call AC_PROG_CC.  Substitute CFLAGS, HDEFINES and
1399         AR.  Call AC_PROG_INSTALL.  Substitute CC_FOR_BUILD, choosing a
1400         value based on whether the code is being compiled by a cross
1401         compiler.  Don't substitute host_makefile_frag or frags.
1402         * aclocal.m4: New file to define local AC_PROG_CC.
1403         * configure: Rebuild.
1404         * Makefile.in (INSTALL): Set to @INSTALL@.
1405         (INSTALL_PROGRAM): Set to @INSTALL_PROGRAM@.
1406         (INSTALL_DATA): Set to @INSTALL_DATA@.
1407         (AR): Set to @AR@.
1408         (CC): Define as @CC@.
1409         (CFLAGS): Set to @CFLAGS@.
1410         (CC_FOR_BUILD): Set to @CC_FOR_BUILD@.
1411         (@host_makefile_frag@): Remove.
1412         (ALL_CFLAGS): Change $(HDEFINES) to @HDEFINES@.  Move $(CFLAGS)
1413         after other options.
1414         (config.status): Remove dependency upon @frags@.
1415         * config/*.mh, config/README: Remove.
1416
1417         * config.bfd: Rewrite to incorporate the contents of the Makefile
1418         fragments by setting shell variables, rather than merely returning
1419         the name of a Makefile fragment.
1420         * configure.in: Use shell variables set by config.bfd rather than
1421         looking at the target Makefile fragment files.  Don't substitute
1422         target_makefile_frag.  Do substitute TDEFINES.
1423         * configure: Rebuild.
1424         * Makefile.in (@target_makefile_frag@): Remove.
1425         (ALL_CFLAGS): Change $(TDEFINES) to @TDEFINES@.
1426         * config/*.mt: Remove.
1427
1428 Mon Sep  4 03:13:28 1995  Ken Raeburn  <[email protected]>
1429
1430         * configure.in: Put changequote lines around "i[345]86" patterns
1431         section of core file support.
1432
1433 Sun Sep  3 11:31:58 1995  Jeff Law  ([email protected])
1434
1435         * som.c (som_bfd_print_private_bfd_data): Define to use the
1436         generic version.
1437
1438 Fri Sep  1 17:08:40 1995  steve chamberlain  <[email protected]>
1439
1440         * peicode.h (coff_swap_aouthdr_in): Add ImageBase to
1441         entry, text_start and data_start.
1442
1443 Fri Sep  1 18:06:28 1995  Ian Lance Taylor  <[email protected]>
1444
1445         * Makefile.in (OFILES): Remove $(TDEPFILES).
1446         * config/apollo.mt (TDEPFILES): Remove.
1447         * config/README: Update.
1448
1449         * configure.in: For a native configuration, set COREFILE and
1450         COREFLAG based on the canonical host name.
1451         * configure: Rebuild.
1452         * Makefile.in: Rebuild dependencies.
1453         (ALL_CFLAGS): Add @COREFLAG@.
1454         (OFILES): Replace $(HDEPFILES) with @COREFILE@.
1455         * coff-rs6000.c: Check AIX_CORE rather than HOST_AIX for core file
1456         support routines.  Check LYNX_CORE rather than HOST_LYNX.
1457         * lynx-core.c: Check LYNX_CORE rather than HOST_LYNX.
1458         * i386lynx.c: Likewise.
1459         * m68klynx.c: Likewise.
1460         * sparclynx.c: Likewise.
1461         * rs6000-core.c: Check AIX_CORE rather than HOST_AIX.
1462         * *-core.c: Comment changes.
1463         * config/decstation.mh (HDEPFILES): Remove.
1464         (HDEFINES): Remove -DTRAD_CORE.
1465         * config/irix3.mh (RANLIB): Remove.
1466         * config/irix4.mh (HDEPFILES, RANLIB): Remove.
1467         (HDEFINES): Remove -DIRIX_CORE.
1468         * config/riscos.mh (RANLIB, HDEPFILES): Remove.
1469         (HDEFINES): Remove -DTRAD_CORE.
1470         * config/ncr3000.mh (AR_FLAGS, RANLIB): Remove.
1471         * config/ultra3.mh (RANLIB): Remove.
1472         * config/aix4.mh, config/alphaosf.mh, config/amix.mh: Remove.
1473         * config/apollo.mh, config/delta68.mh, config/delta88.mh: Remove.
1474         * config/dpx2.mh, config/esix.mh, config/harris.mh: Remove.
1475         * config/hp300.mh, config/hp300bsd.mh, config/hppabsd.mh: Remove.
1476         * config/hppahpux.mh, config/hppaosf.mh: Remove.
1477         * config/i386aix.mh, config/i386bsd.mh: Remove.
1478         * config/i386linux.mh, config/i386mach3.mh: Remove.
1479         * config/i386sco.mh, config/i386v.mh, config/i386v4.mh: Remove.
1480         * config/irix5.mh, config/m88kmach3.mh, config/mipsbsd.mh: Remove.
1481         * config/mipsmach3.mh, config/news-mips.mh: Remove.
1482         * config/news.mh, config/pc532mach.mh, config/riscix.mh: Remove.
1483         * config/rs600.mh, config/rs6000lynx.mh: Remove.
1484         * config/solaris2.mh, config/stratus.mh: Remove.
1485         * config/symmetry.mh, config/sysv4.mh, config/tahoe.mh: Remove.
1486         * config/vaxbsd.mh, config/vaxult.mh, config/vaxult2.mh: Remove.
1487
1488 Fri Sep  1 15:18:50 1995  Kazumoto Kojima  <[email protected]>
1489
1490         * elflink.h (elf_bfd_final_link): Don't change a DT_INIT or
1491         DT_FINI entry if the appropriate symbol is not in the hash table.
1492
1493         * libelf.h (struct elf_backend_data): Add create_program_headers
1494         and want_hdr_in_seg fields.
1495         * elfxx-target.h (elf_backend_want_hdr_in_seg): Define if not
1496         defined.
1497         (elf_backend_create_program_headers): Likewise.
1498         (elfNN_bed): Initialize create_program_headers and
1499         want_hdr_in_seg.
1500         * elf.c (get_program_header_size): Call create_program_headers
1501         backend routine.
1502         (map_program_segments): Check want_hdr_in_seg backend field.  Call
1503         create_program_headers backend routine.
1504
1505         * elf.c (assign_file_positions_except_relocs): Align non allocated
1506         sections when creating an executable.
1507
1508         * elfcode.h (elf_swap_phdr_in): Make non static.
1509         (elf_swap_phdr_out): Make non static.
1510         * libelf.h (bfd_elf32_swap_phdr_in): Declare.
1511         (bfd_elf32_swap_phdr_out): Declare.
1512         (bfd_elf64_swap_phdr_in): Declare.
1513         (bfd_elf64_swap_phdr_out): Declare.
1514
1515         * ecofflink.c (ecoff_collect_shuffle): New static function.
1516         (_bfd_ecoff_get_accumulated_pdr): New function.
1517         (_bfd_ecoff_get_accumulated_sym): New function.
1518         (_bfd_ecoff_get_accumulated_ss): New function.
1519         * libbfd-in.h (_bfd_ecoff_get_accumulated_pdr): Declare.
1520         (_bfd_ecoff_get_accumulated_sym): Declare.
1521         (_bfd_ecoff_get_accumulated_ss): Declare.
1522         * libbfd.h: Rebuild.
1523
1524 Fri Sep  1 13:20:25 1995  Ian Lance Taylor  <[email protected]>
1525
1526         * libecoff.h (_bfd_ecoff_bfd_print_private_bfd_data): Fix typo.
1527
1528         * elflink.h (elf_link_add_object_symbols): Handle indirect and
1529         warning symbols.  If any section is named .gnu.warning.XXX, treat
1530         the contents as a warning to be issued if the symbol XXX is
1531         referenced.
1532         (elf_link_output_extsym): For an indirect or warning symbol, just
1533         output the symbol it points to.
1534
1535         * linker.c (_bfd_link_hash_newfunc): Don't bother to set bfd_error
1536         if bfd_hash_allocate fails, since it will already be set.
1537         (generic_link_hash_newfunc): Likewise.
1538         (archive_hash_newfunc): Likewise.
1539         (hash_entry_bfd): New static function.
1540         (_bfd_generic_link_add_one_symbol): Pass new arguments to warning
1541         callback.  Allocate a new warning using the hash table newfunc.
1542         Use bfd_hash_replace to update the entry in the hash table, rather
1543         than assuming we can copy the fields with structure assignment.
1544
1545         * hash.c (bfd_hash_replace): New function.
1546         * bfd-in.h (bfd_hash_replace): Declare.
1547         * bfd-in2.h: Rebuild.
1548
1549 Fri Sep  1 08:12:50 1995  James G. Smith  <[email protected]>
1550
1551         * config.bfd: Add mips*vr4300-*-elf* target.
1552         * config/mipsbvr4300.mt: Added.
1553
1554 See file ChangeLog.2
1555
1556 \f
1557 Local Variables:
1558 mode: indented-text
1559 left-margin: 8
1560 fill-column: 74
1561 version-control: never
1562 End:
This page took 0.111615 seconds and 2 git commands to generate.