]>
Commit | Line | Data |
---|---|---|
a0a2dd54 ILT |
1 | Thu Feb 15 11:29:13 1996 Ian Lance Taylor <[email protected]> |
2 | ||
edf3fe48 ILT |
3 | * elf.c (map_sections_to_segments): If we have a .dynamic section, |
4 | then start a new segment rather than put a writable section in a | |
5 | readonly segment. | |
6 | ||
b5e4f369 ILT |
7 | * configure.host: Set RPATH_ENVVAR. |
8 | ||
f2e33e27 ILT |
9 | * Makefile.in: Rebuild dependencies. |
10 | ||
a0a2dd54 ILT |
11 | * elflink.c (_bfd_elf_create_linker_section): Remove unused |
12 | zero_section variable. | |
13 | ||
52c6bc4d ILT |
14 | Thu Feb 15 10:39:17 1996 H.J. Lu <[email protected]> |
15 | ||
16 | * Makefile.in ($(srcdir)/bfd-in2.h): Rename target from bfd-in2.h. | |
17 | ($(srcdir)/libbfd.h): Rename from libbfd.h. | |
18 | ($(srcdir)/libcoff.h): Rename from libcoff.h. | |
19 | ||
c9e5279f ILT |
20 | Wed Feb 14 16:29:07 1996 Martin Anantharaman <[email protected]> |
21 | ||
cb50baea ILT |
22 | * ieee.c (ieee_write_expression): Only use an R variable for a |
23 | local symbol. Don't output a zero offset. Handle a zero address. | |
24 | (SRC_MASK, PCREL_OFFSET): Define based on KEEPMINUSPCININST. | |
25 | (rel32_howto, rel16_howto, rel8_howto): Use SRC_MASK and | |
26 | PCREL_OFFSET. | |
27 | (parse_expression): Don't try to handle multiple occurrences of a | |
28 | P variable. Handle I variables differently from X variables. Fix | |
29 | the order of minus expressions. | |
30 | (ieee_slurp_external_symbols): Generate an I variable for an NN | |
31 | record. Fix handling of ATI and ATX records. | |
32 | (ieee_slurp_sections): Only set minimal section attributes. | |
33 | Adjust them later, based on the section contents. | |
34 | (ieee_object_p): Read in the file until just after the ME record. | |
35 | Call ieee_slurp_section_data to set the section flags. | |
36 | (do_one): Add iterations parameter. Only repeat the first load | |
37 | item. Set the section and file reloc flags. | |
38 | (ieee_slurp_section_data): Set section flags. Pass iterations to | |
39 | do_one. | |
40 | (ieee_canonicalize_reloc): Handle I variables. | |
41 | (do_with_relocs): Only emit relocation size when necessary. | |
42 | Increase MAXRUN to 127. Change ov to be assigned, and take | |
43 | src_mask and pcrel_offset into account. | |
44 | (ieee_write_data_part): Skip sections that are not loaded. | |
45 | (ieee_write_external_part): Don't output optional last entry of WX | |
46 | records. | |
47 | (ieee_write_me_part): Make setting of me_record neater. | |
48 | (ieee_generic_stat_arch_elt): Get the size of an archive element. | |
49 | ||
c9e5279f ILT |
50 | * syms.c (stt): Add entries for zerovars, vars, and code. |
51 | ||
52 | * elfcode.h (validate_reloc): New static function. | |
53 | (write_relocs): Call validate_reloc for non ELF relocs. | |
54 | ||
55 | * elfxx-target.h (elf_symbol_leading_char): Define if not defined. | |
56 | (TARGET_BIG_SYM): Use elf_symbol_leading_char. | |
57 | (TARGET_LITTLE_SYM): Likewise. | |
58 | ||
59 | * config.bfd (m68*-*-psos*): New target. | |
60 | ||
d9d65be6 ILT |
61 | Tue Feb 13 15:56:22 1996 Bryan Ford <[email protected]> |
62 | ||
63 | * i386msdos.c: Remove some #if 0 code. | |
64 | (msdos_write_object_contents): Don't include empty sections in the | |
65 | size computation, regardless of their address. | |
66 | ||
67 | Tue Feb 13 15:36:37 1996 Michael Meissner <[email protected]> | |
68 | ||
69 | * elf32-ppc.c (ppc_elf_relocate_section): Don't segfault if dynboj | |
70 | is NULL, ie, the -r switch is used. | |
71 | ||
db5970c7 ILT |
72 | Tue Feb 13 14:35:15 1996 Ian Lance Taylor <[email protected]> |
73 | ||
e9f03cd4 ILT |
74 | * reloc.c (BFD_RELOC_MIPS_GOT_HI16): Define. |
75 | (BFD_RELOC_MIPS_GOT_LO16): Define. | |
b7384d22 | 76 | (BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MIPS_CALL_LO16): Define. |
e9f03cd4 ILT |
77 | * bfd-in2.h, libbfd.h: Rebuild. |
78 | * elf32-mips.c (mips_reloc_map): Map new relocs. | |
79 | ||
fe7c066a ILT |
80 | * configure.host: Set HDLFLAGS for *-*-hpux with --enable-shared. |
81 | ||
1ab628e4 ILT |
82 | * Makefile.in ($(SHLINK)): Check ts against $(SHLIB), not |
83 | $(SHLINK). | |
84 | ||
db5970c7 ILT |
85 | * ieee.c (get_symbol): Set the section to bfd_abs_section. |
86 | (do_with_relocs): If EXEC_P is set and there are no relocs, use a | |
87 | simple number for the section address, rather than an expression. | |
88 | Limit the number of bytes between relocs to MAXRUN. | |
89 | (ieee_write_me_part): Set me_record to the file offset after the | |
90 | start address. | |
91 | (ieee_write_processor): New static function. | |
92 | (ieee_write_object_contents): Use ieee_write_processor. | |
93 | ||
318b7c18 ILT |
94 | Fri Feb 9 10:53:00 1996 Ian Lance Taylor <[email protected]> |
95 | ||
db5970c7 ILT |
96 | * configure.host: Use ${CC-gcc} when testing for -rpath on SunOS. |
97 | ||
98 | * coff-aux.c: Change include of aux.h to aux-coff.h. | |
318b7c18 | 99 | |
56b64690 ILT |
100 | Thu Feb 8 14:01:03 1996 Andreas Schwab <[email protected]> |
101 | ||
102 | * elf32-m68k.c (elf_m68k_relocate_section): For a R_68K_RELATIVE | |
103 | relocation put the addend both in the reloc entry and the data. | |
104 | (elf_m68k_finish_dynamic_symbol): Likewise. Mask out marker in | |
105 | GOT offset value. | |
106 | ||
107 | * elf32-m68k.c (elf_m68k_relocate_section): If -Bsymbolic, resolve | |
108 | a R_68K_PCxx reloc against a defined global symbol directly. | |
109 | (elf_m68k_check_relocs): Don't count such a reloc. | |
110 | ||
111 | * elf32-m68k.c (elf_m68k_check_relocs): Don't record a symbol with | |
112 | a PLTxx reloc as dynamic. Disallow PLTxxO reloc against a local | |
113 | symbol for now, otherwise always record the symbol as dynamic. | |
114 | (elf_m68k_adjust_dynamic_symbol): If a symbol with a PLTxx reloc | |
115 | is not referenced by a dynamic object, and we are not making a | |
116 | shared object, then don't make a PLT entry. If we do make a PLT | |
117 | entry, make sure the symbol has been recorded as dynamic. | |
118 | ||
5d649ca8 ILT |
119 | Wed Feb 7 13:56:06 1996 Ian Lance Taylor <[email protected]> |
120 | ||
121 | * configure.host: When making a shared library, set HLDFLAGS to | |
122 | pass an appropriate -rpath option. Use the make variable SONAME | |
123 | as the shared library soname, rather than computing it here. On | |
124 | SunOS, build stamp-tshlink in place of $(SHLINK). | |
125 | * Makefile.in (SONAME): New variable. | |
126 | ($(SHLINK)): Make a link to the transformed name, as well. | |
127 | (stamp-tshlink): New target. | |
128 | (install): Skip stamp-tshlink during install. | |
129 | ||
8cc98cd5 MM |
130 | Wed Feb 7 13:37:39 1996 Michael Meissner <[email protected]> |
131 | ||
56b64690 ILT |
132 | * elf32-ppc.c (ppc_elf_add_symbol_hook): Do not assume that the |
133 | linker sections have been set up yet. | |
134 | ||
8cc98cd5 MM |
135 | * elf.c (make_mapping): Add an additional argument to suppress |
136 | making the first section include the program headers. | |
137 | (map_sections_to_segments): If the user used -Ttext such that the | |
138 | program headers are on a different page, do not set the flags | |
139 | saying that this section includes the program headers. | |
140 | ||
fe16107d C |
141 | Tue Feb 6 14:04:49 1996 J.T. Conklin <[email protected]> |
142 | ||
143 | * configure.in (*-*-netbsd*): Set COREFILE to netbsd-core.c. | |
144 | don't define TRAD_HEADER. | |
145 | * configure: Rebuild. | |
146 | ||
147 | * netbsd-core.c: New file, support for NetBSD core files. | |
148 | * hosts/*nbsd.h: Removed. | |
149 | ||
f1783016 DE |
150 | Tue Feb 6 11:47:49 1996 Doug Evans <[email protected]> |
151 | ||
152 | * reloc.c (BFD_RELOC_SPARC_[567]): New reloc types. | |
153 | (BFD_RELOC_SPARC_LO7 reloc type): Deleted. | |
154 | * libbfd.h, bfd-in2.h: Regenerated. | |
155 | * elf32-sparc.c (_bfd_sparc_elf_reloc_type_lookup): Renamed from | |
156 | bfd_elf32_bfd_reloc_type_lookup. | |
157 | (reloc_type{,_names}): Deleted. | |
158 | (_bfd_sparc_elf_howto_table): Renamed from elf_sparc_howto_table. | |
159 | Add sparc64 relocs. | |
160 | (sparc_reloc_map): Add sparc64 relocs. | |
161 | (sparc_elf_notsupported_reloc): New static function. | |
162 | (sparc_elf_wdisp16_reloc): New static function. | |
163 | (elf32_sparc_check_relocs): Handle R_SPARC_WDISP{16,19}. | |
164 | (elf32_sparc_relocate_section): Likewise. | |
165 | (bfd_elf32_bfd_reloc_type_lookup): Define. | |
166 | * elf64-sparc.c (sparc64_elf_wdisp16_reloc): Deleted. | |
167 | (reloc_type{,_names}): Deleted. | |
168 | (elf_sparc_howto_table): Deleted. | |
169 | (sparc_reloc_map): Deleted. | |
170 | (_bfd_sparc_elf_howto_table): Renamed from elf_sparc_howto_table. | |
171 | (bfd_elf64_bfd_reloc_type_lookup): Change from function to #define. | |
172 | ||
48fd00b6 ILT |
173 | Tue Feb 6 12:12:22 1996 Ian Lance Taylor <[email protected]> |
174 | ||
2300e217 ILT |
175 | * configure.host: Make SHLIB_CFLAGS include $(PICFLAG) on a |
176 | *-*-hpux* host. | |
177 | ||
48fd00b6 ILT |
178 | * Makefile.in (program_transform_name): New variable. |
179 | (install): Transform library name before installing it. | |
180 | ||
8adca582 ILT |
181 | Mon Feb 5 10:38:27 1996 Ian Lance Taylor <[email protected]> |
182 | ||
cbe75cb6 ILT |
183 | * archures.c (bfd_mach_i960_hx): Define. |
184 | * bfd-in2.h: Rebuild. | |
185 | * cpu-i960.c (scan_960_mach): Accept machine "hx". | |
186 | (MATRIX): Expand entries for HX. | |
187 | (arch_info_struct): Add i960:hx entry. | |
188 | * bout.c (b_out_set_arch_mach): Handle bfd_mach_i960_hx. | |
189 | * coffcode.h (coff_set_arch_mach_hook): Handle F_I960HX. | |
190 | (coff_set_flags): Handle bfd_mach_i960_hx. | |
191 | ||
44f795f7 ILT |
192 | Support for building as a shared library, based on patches from |
193 | Alan Modra <[email protected]>: | |
194 | * configure.in: Add AC_ARG_ENABLE for shared and commonbfdlib. | |
195 | New substitutions: ALLLIBS, PICFLAG, SHLIB, SHLIB_CC, | |
196 | SHLIB_CFLAGS, COMMON_SHLIB, PICLIST, SHLINK. | |
197 | * configure: Rebuild. | |
198 | * configure.host: If --enable-shared, adjust shared library stuff | |
199 | based on the host. If the host is SunOS, and the linker supports | |
200 | -rpath, set HLDFLAGS to use it. | |
201 | * Makefile.in (ALLLIBS): New variable. | |
202 | (PICFLAG, SHLIB, SHLIB_CC, SHLIB_CFLAGS): New variables. | |
203 | (COMMON_SHLIB, SHLINK): New variables. | |
204 | (.c.o): If PICFLAG is set, compile twice, once PIC, once normal. | |
205 | (STAGESTUFF): Remove variable. | |
206 | (all): Depend upon $(ALLLIBS) and @PICLIST@ rather than | |
207 | $(TARGETLIB). | |
208 | (stamp-ofiles): New target, like old ofiles target, but build | |
209 | using a temporary file and move-if-change, and touch stamp-ofiles | |
210 | when done. | |
211 | (ofiles): Just depend upon stamp-ofiles. | |
212 | (stamp-piclist, piclist): New targets. | |
213 | ($(SHLIB), $(SHLINK)): New targets. | |
214 | (targets.o, archures.o): Build twice if PICFLAG is set. | |
215 | (do_mostlyclean): Remove pic/*.o. | |
216 | (do_clean): Remove stamp-ofiles, $(SHLIB), $(SHLINK), piclist, and | |
217 | stamp-piclist. | |
218 | (do_distclean): Remove pic and stamp-picdir. | |
219 | (install): Install shared libraries. | |
220 | ($(OFILES)): Depend upon stamp-picdir. | |
221 | (stamp-picdir): New target. | |
222 | ||
cb62d2bc ILT |
223 | * libcoff-in.h: Add comment reminding people that libcoff.h is a |
224 | generated file. | |
225 | * libcoff.h: Rebuild. | |
226 | ||
8adca582 ILT |
227 | * elflink.h (elf_adjust_dynamic_symbol): Don't try to get the |
228 | flavour of a section with no owner. | |
229 | ||
230 | * elf32-mips.c (mips_elf_create_dynamic_sections): Clear | |
231 | ELF_LINK_NON_ELF flag. | |
232 | (mips_elf_create_got_section): Likewise. | |
233 | ||
234 | * elf.c: Revert last change, since it breaks dynamic linking. | |
235 | * elf-bfd.h (struct elf_backend_data): Remove want_hdr_in_seg | |
236 | field. | |
237 | * elf32-mips.c (elf_backend_want_hdr_in_seg): Don't define. | |
238 | * elfxx-target.h (elf_backend_want_hdr_in_seg): Don't define. | |
239 | (elfNN_bed): Don't initialize want_hdr_in_seg field. | |
240 | ||
241 | Sun Feb 4 20:45:13 1996 Michael Meissner <[email protected]> | |
242 | ||
243 | * elf.c (assign_file_positions_for_segments): If the backend does | |
244 | not want the elf header or the program headers in the address | |
245 | space, do not include them in the calculations. | |
246 | ||
247 | * elf32-ppc.c (ppc_elf_additional_program_headers): New hook | |
248 | function to determine if we need additional program headers. | |
249 | (ppc_elf_modify_segment_map): Define as a NOP function for now. | |
250 | (ppc_elf_create_linker_section): .sdata2 is a read-only section. | |
251 | ||
0f09ddd4 ILT |
252 | Sat Feb 3 23:00:03 1996 Ian Lance Taylor <[email protected]> |
253 | ||
254 | * coffcode.h: Move today's libcoff.h change into coffcode.h. | |
255 | ||
b48f10ba FF |
256 | Sat Feb 3 15:43:44 1996 Fred Fish <[email protected]> |
257 | ||
0f09ddd4 ILT |
258 | * libcoff.h (bfd_coff_link_add_one_symbol): Combine macro args |
259 | back into one line. Some compilers (sunos 4.1.3 for example) | |
260 | won't accept args split across more than one line. | |
b48f10ba | 261 | |
50761d3b SC |
262 | Fri Feb 2 11:42:15 1996 Steve Chamberlain <[email protected]> |
263 | ||
264 | * aclocal.m4 (BFD_BINARY_FOPEN): Understand cygwin32. | |
265 | * configure: Regenerate. | |
266 | ||
9dce8260 JL |
267 | Fri Feb 2 12:12:16 1996 Jeffrey A Law ([email protected]) |
268 | ||
269 | * elf32-hppa.c (elf32_hppa_backend_symbol_table_processing): Don't | |
270 | try to do arithmetic on a void *, cast it to a unsigned char * first. | |
271 | ||
6c55897c ILT |
272 | Thu Feb 1 16:04:06 1996 Ian Lance Taylor <[email protected]> |
273 | ||
869b7d80 ILT |
274 | * elf-bfd.h (ELF_LINK_NON_ELF): Define. |
275 | * elf.c (_bfd_elf_link_hash_newfunc): Set elf_link_hash_flags to | |
276 | ELF_LINK_NON_ELF. | |
277 | * elflink.h (elf_link_add_object_symbols): Reset ELF_LINK_NON_ELF | |
278 | flag for a newly defined symbol. | |
279 | (NAME(bfd_elf,record_link_assignment)): Likewise. | |
280 | (elf_adjust_dynamic_symbol): If ELF_LINK_NON_ELF is set, try to | |
281 | set the DEF or REF_REGULAR flags correctly. | |
282 | ||
6f6956c6 ILT |
283 | * Makefile.in (bfd-in2.h): Make bfd.h, not protos, in docdir. |
284 | (libbfd.h, libcoff.h): Corresponding change. | |
285 | ||
6c55897c ILT |
286 | * elf32-i386.c (elf_i386_check_relocs): Don't record a symbol with |
287 | a PLT32 reloc as dynamic. | |
288 | (elf_i386_adjust_dynamic_symbol): If a symbol with a PLT32 reloc | |
289 | is not referenced by a dynamic object, and we are not making a | |
290 | shared object, then don't make a PLT entry. If we do make a PLT | |
291 | entry, make sure the symbol has been recorded as dynamic. | |
292 | ||
b06136f2 SC |
293 | Wed Jan 31 17:23:32 1996 Steve Chamberlain <[email protected]> |
294 | ||
295 | * coff-i386.c (coff_i386_reloc_type_lookup): Add BFD_RELOC_32_PCREL. | |
296 | * config.bfd (i[345]86-*-win32): Becomes i[345]86-*-cygwin32. | |
297 | (powerpcle-*-cygwin32): New. | |
298 | * peicode.h (add_data_entry): Get address from vma. | |
299 | ||
5c867ecd MM |
300 | Wed Jan 31 16:23:57 1996 Michael Meissner <[email protected]> |
301 | ||
302 | * elflink.c (_bfd_elf_create_linker_section): If the symbol | |
303 | attached to the section has already been created as an undefined | |
304 | symbol, treat it as if it hasn't been created yet. | |
305 | ||
28c16b55 ILT |
306 | Wed Jan 31 16:16:53 1996 Ian Lance Taylor <[email protected]> |
307 | ||
308 | * elflink.h (elf_bfd_final_link): Don't output initial dummy | |
309 | symbol or section symbols if stripping all symbols and this is not | |
310 | a relocateable link. Don't output the symbol string table if | |
311 | there are no symbols. | |
312 | (elf_link_flush_output_syms): Don't do anything if there are no | |
313 | symbols to flush. | |
314 | ||
d19df9b5 ILT |
315 | Wed Jan 31 12:55:49 1996 Richard Henderson <[email protected]> |
316 | ||
317 | * coff-aux.c: New file. | |
318 | * hosts/m68kaux.h: New file. | |
319 | * config.bfd (m68*-apple-aux*): New target. | |
320 | * configure.in (m68*-apple-aux*): New native host. | |
321 | (m68kaux_coff_vec): New vector. | |
322 | * configure: Rebuild. | |
323 | * targets.c (m68kaux_coff_vec): Declare. | |
324 | * coffcode.h (bfd_coff_backend_data): Add field | |
325 | _bfd_coff_link_add_one_symbol. | |
326 | (bfd_coff_link_add_one_symbol): Define. | |
327 | (compare_arelent_ptr): New static function if TARG_AUX. | |
328 | (coff_write_relocs): If TARG_AUX, sort the relocs. | |
329 | (coff_write_object_contents): Set A/UX aouthdr magic number. | |
330 | (coff_link_add_one_symbol): Define if not defined. | |
331 | (bfd_coff_std_swap_table): Initialize new field. | |
332 | * libcoff.h: Rebuild. | |
333 | * cofflink.c (coff_link_add_symbols): Call | |
334 | bfd_coff_link_add_one_symbol rather than | |
335 | _bfd_generic_link_add_one_symbol. | |
336 | * coff-m68k.c (COFF_PAGE_SIZE): Don't define if already defined. | |
337 | * coff-alpha.c (alpha_ecoff_backend_data): Initialize new field. | |
338 | * coff-mips.c (mips_ecoff_backend_data): Likewise. | |
339 | * Makefile.in: Rebuild dependencies. | |
340 | (BFD32_BACKENDS): Add coff-aux.o. | |
341 | (BFD32_BACKENDS_CFILES): Add coff-aux.c. | |
342 | ||
a796aafd ILT |
343 | Wed Jan 31 11:37:46 1996 Andreas Schwab <[email protected]> |
344 | ||
345 | * elf32-m68k.c (elf_m68k_relocate_section): Fix R_68K_GOT* | |
346 | relocation; ignore addend with R_68K_{GOT,PLT}*O relocation. | |
347 | ||
a8763553 ILT |
348 | Tue Jan 30 12:09:04 1996 Ian Lance Taylor <[email protected]> |
349 | ||
66761e59 ILT |
350 | * Makefile.in (do_maintainer_clean): Remove $(srcdir)/bfd-in2.h, |
351 | $(srcdir)/libbfd.h and $(srcdir)/libcoff.h. | |
352 | (maintainer-clean): Warn about deleting special files. | |
353 | (bfd-in2.h, libbfd.h, libcoff.h): New targets. | |
354 | ||
cf5138e3 ILT |
355 | * elf32-hppa.c (elf32_hppa_relocate_section): Handle indirect and |
356 | warning symbols correctly. | |
357 | * elf32-i386.c (elf_i386_relocate_section): Likewise. | |
358 | * elf32-m68k.c (elf_m68k_relocate_section): Likewise. | |
359 | * elf32-mips.c (mips_elf_relocate_section): Likewise. | |
360 | * elf32-ppc.c (ppc_elf_relocate_section): Likewise. | |
361 | * elf32-sparc.c (elf32_sparc_relocate_section): Likewise. | |
362 | * elf64-sparc.c (sparc64_elf_relocate_section): Likewise. | |
363 | ||
a8763553 ILT |
364 | * syms.c (_bfd_stab_section_find_nearest_line): Add casts to avoid |
365 | warnings. | |
366 | ||
bdd2e7f1 KK |
367 | Mon Jan 29 14:27:24 1996 Kim Knuttila <[email protected]> |
368 | ||
369 | * libcoff-in.h: aligned newly exported names with bfd naming | |
370 | conventions. Removed an erroneous define of POWERPC_LE_PE. | |
371 | * libcoff.h: Rebuild. | |
372 | * cofflink.c, coff-ppc.c: the above function name changes | |
373 | ||
d2bb6c79 ILT |
374 | Mon Jan 29 13:06:28 1996 Ian Lance Taylor <[email protected]> |
375 | ||
eb5bc1f3 ILT |
376 | From Basim Kadhim <[email protected]>: |
377 | * ecoff.c (struct extsym_info): Define. | |
378 | (_bfd_ecoff_bfd_final_link): Pass a pointer to struct extsym_info | |
379 | to ecoff_link_write_external. | |
380 | (ecoff_link_write_external): Accept a struct extsym_info pointer. | |
381 | Strip symbols when appropriate. | |
382 | ||
052b35d2 ILT |
383 | Based on patches from Ronald F. Guilmette <[email protected]>: |
384 | * syms.c (BSF_OBJECT): Define. | |
385 | (bfd_print_symbol_vandf): Print 'O' for BSF_OBJECT. | |
386 | * bfd-in2.h: Rebuild. | |
387 | * elfcode.h (elf_slurp_symbol_table): Set BSF_OBJECT for an | |
388 | STT_OBJECT symbol. | |
389 | * elf.c (swap_out_syms): Only set type to STT_OBJECT if BSF_OBJECT | |
390 | is set. | |
391 | ||
53787b23 ILT |
392 | * elf32-i386.c (elf_i386_relocate_section): If -Bsymbolic, when |
393 | copying relocs into a shared object, treat a defined global symbol | |
394 | as a local symbol. | |
395 | * elf32-m68k.c (elf_m68k_relocate_section): Likewise. | |
396 | * elf32-mips.c (mips_elf_relocate_section): Likewise. | |
397 | * elf32-sparc.c (elf32_sparc_relocate_section): Likewise. | |
398 | ||
d2bb6c79 ILT |
399 | * elflink.h (elf_link_add_object_symbols): Only set weakdef to a |
400 | real defined symbol, not to a weak defined symbol. | |
401 | ||
13d1a4dd KK |
402 | Mon Jan 29 11:34:36 1996 Kim Knuttila <[email protected]> |
403 | ||
404 | * cofflink.c: removed the POWERPC_LE_PE hack, promoted some types | |
405 | and made a few static functions externs. | |
406 | ||
407 | * coff-ppc.c (ppc_bfd_coff_final_link): new function, replaces the | |
408 | POWERPC_LE_PE hack in cofflink. | |
409 | ||
410 | * libcoff-in.h: promoted the following from cofflink.c to allow | |
411 | _bfd_coff_final_link to be overridden - STRING_SIZE_SIZE, | |
412 | coff_debug_merge_element, struct coff_debug_merge_type, | |
413 | coff_debug_merge_hash_entry, coff_debug_merge_hash_table, | |
414 | coff_debug_merge_hash_table_init, coff_debug_merge_hash_table_free, | |
415 | coff_debug_merge_hash_lookup, coff_link_section_info, | |
416 | coff_final_link_info, coff_debug_merge_hash_newfunc, | |
417 | coff_write_global_sym, coff_link_input_bfd, coff_reloc_link_order. | |
418 | ||
419 | * libcoff.h: re-gen'd | |
420 | ||
86aac8ea ILT |
421 | Fri Jan 26 18:33:35 1996 Ian Lance Taylor <[email protected]> |
422 | ||
423 | * syms.c: Include "bfdlink.h". | |
424 | (struct stab_find_info): Define. | |
425 | (_bfd_stab_section_find_nearest_line): New function. | |
426 | * libbfd-in.h (_bfd_stab_section_find_nearest_line): Declare. | |
427 | * libbfd.h: Rebuild. | |
428 | * elf-bfd.h (struct elf_obj_tdata): Add line_info field. | |
429 | * elf.c (_bfd_elf_find_nearest_line): Try calling | |
430 | _bfd_stab_section_find_nearest_line before searching the ELF | |
431 | symbol table. Find the closest STT_FUNC symbol, not the last one. | |
432 | * libcoff-in.h (coff_data_type): Add line_info field. | |
bdd2e7f1 | 433 | * libcoff.h: Rebuild. |
86aac8ea ILT |
434 | * coffgen.c (coff_find_nearest_line): Try calling |
435 | _bfd_stab_section_find_nearest_line before searching the COFF | |
436 | symbol table. | |
437 | * Makefile.in: Rebuild dependencies. | |
438 | ||
439 | Fri Jan 26 16:11:19 1996 Michael Meissner <[email protected]> | |
440 | ||
441 | * elf32-ppc.c (R_PPC_EMB_SDA21 relocations): Make relocation size | |
442 | 4 bytes, so we get the correct value when updating the register | |
443 | field in little endian mode. | |
444 | ||
43d36aad ILT |
445 | Thu Jan 25 12:14:16 1996 Ian Lance Taylor <[email protected]> |
446 | ||
f0a97077 ILT |
447 | * libcoff-in.h (struct xcoff_tdata): Remove toc_section and |
448 | entry_section fields. Add sntoc and snentry fields. | |
449 | * libcoff.h: Rebuild. | |
450 | * coffcode.h (coff_mkobject_hook): Initialize sntoc and snentry, | |
451 | not toc_section and entry_section (the COFF file does not have any | |
452 | sections at this point). | |
453 | (coff_write_object_contents): Set o_snentry and o_sntoc from | |
454 | snentry and sntoc rather than entry_section and toc_section. | |
455 | * coff-rs6000.c (xcoff_copy_private_bfd_data): Copy sntoc and | |
456 | snentry, not toc_section and entry_section. | |
457 | * xcofflink.c (bfd_xcoff_size_dynamic_sections): Don't set | |
458 | entry_section from hentry. | |
459 | (xcoff_link_input_bfd): If a defined symbol has XCOFF_ENTRY set, | |
460 | set snentyr. | |
461 | (xcoff_link_input_bfd): Set sntoc, not toc_section. | |
462 | (xcoff_write_global_symbol): Get toc_section from sntoc, rather | |
463 | than using toc_section directly. | |
464 | ||
9b4598d0 ILT |
465 | * archures.c: Add missing `.' in enum bfd_architecture. |
466 | * bfd-in2.h: Rebuild. | |
467 | ||
43d36aad ILT |
468 | * config.bfd (i[345]86-*-sco*elf*): Use bfd_elf32_i386_vec. From |
469 | Robert Lipe <[email protected]>. | |
470 | ||
eb82bc60 MM |
471 | Thu Jan 25 12:08:51 1996 Michael Meissner <[email protected]> |
472 | ||
473 | * elf32-ppc.c (ppc_elf_size_dynamic_sections): Add .rela.sdata{,2} | |
474 | to sections we allocate. Use bfd_zalloc to allocate initialial | |
475 | sections, not bfd_alloc. | |
476 | (ppc_elf_check_relocs): Remove BFD_ASSERTs for !shared from | |
477 | SDA{,2}I16 relocations. | |
478 | (ppc_elf_add_symbol_hook): Use the value of -G nn to determine | |
479 | whether to put something in .sbss or not. | |
480 | (ppc_elf_relocate_section): Add support for more relocations. Add | |
c1e65e24 MM |
481 | in sec->output_offset where appropriate. Make error messages |
482 | include the symbol name. | |
eb82bc60 MM |
483 | |
484 | * elflink.c (_bfd_elf_create_linker_section): Lookup symbol before | |
485 | trying to add it to the symbol table, so _GLOBAL_OFFSET_TABLE_ | |
486 | doesn't get redefined messages if -shared. | |
487 | ||
488 | * elflink.h (elf_create_pointer_linker_section) Only bump RELA | |
489 | section if the rel_section field has been set up. | |
490 | ||
9d621c7d MM |
491 | Wed Jan 24 20:40:26 1996 Michael Meissner <[email protected]> |
492 | ||
493 | * elf32-ppc.c (ppc_elf_relocate_section): Fix typo in eabi | |
494 | relocations. | |
495 | ||
75c9ddc9 DE |
496 | Wed Jan 24 10:38:34 1996 Doug Evans <[email protected]> |
497 | ||
498 | * elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Delete checking | |
499 | of flags, only flags used are controlled by mach number. Bump up | |
500 | output file mach number to highest of input file mach numbers. | |
501 | (elf32_sparc_object_p): Watch for EF_SPARC_SUN_US1. | |
502 | (elf32_sparc_final_write_processing): Set EF_SPARC_SUN_US1 if v8plusa. | |
503 | ||
72c513bc DE |
504 | * config.bfd (sparc64-*-{sysv4*,solaris2*}): Comment out |
505 | bfd_elf64_sparc_vec support. | |
506 | ||
3cbe19d2 MM |
507 | Tue Jan 23 14:33:05 1996 Michael Meissner <[email protected]> |
508 | ||
509 | * elf32-ppc.c (ppc_elf_copy_private_bfd_data): Don't complain if | |
510 | the embedded bit is set on some objects and not on others. Just | |
511 | or it together. | |
d8fd85ad MM |
512 | (ppc_elf_relocate_section): Implement R_PPC_EMB_{SDA21,RELSDA} |
513 | relocations. | |
3cbe19d2 | 514 | |
5eb83ede ILT |
515 | Tue Jan 23 14:22:45 1996 Ian Lance Taylor <[email protected]> |
516 | ||
4a3d3b42 ILT |
517 | * coffcode.h (coff_new_section_hook): Don't try to align the |
518 | .stabstr section. | |
519 | ||
5eb83ede ILT |
520 | * coffcode.h (coff_set_section_contents): Fix the handling of the |
521 | .lib section to work even if the entire section contents are | |
522 | written at once. From Gvran Uddeborg <[email protected]> and | |
523 | Robert Lipe <[email protected]>. | |
524 | ||
05f927dd MM |
525 | Mon Jan 22 18:45:51 1996 Michael Meissner <[email protected]> |
526 | ||
527 | * elflink.h (elf_finish_pointer_linker_section): Don't allocate | |
528 | memory here for contents. | |
529 | ||
530 | * elf32-ppc.c (ppc_elf_relocate_section): Bump up _SDA_BASE_ and | |
531 | _SDA2_BASE_ by 32768. | |
532 | (ppc_elf_size_dynamic_sections): #if out PLT code which we haven't | |
533 | started using. Allocate contents for .sdata and .sdata2 sections | |
534 | also. | |
535 | (ppc_elf_check_relocs): Use bfd_get_section_name in debug message, | |
536 | rather than _name. | |
537 | (ppc_elf_finish_dynamic_symbol): Remove code that attempted to | |
538 | size _SDA{,2}_BASE_. | |
539 | (ppc_elf_relocate_section): Change how sdata{,2} relocations are | |
540 | done. | |
541 | ||
5bc513b4 DE |
542 | Mon Jan 22 08:52:04 1996 Doug Evans <[email protected]> |
543 | ||
5a5bac64 DE |
544 | * elflink.h (elf_finish_pointer_linker_section): Fix typo. |
545 | ||
5bc513b4 | 546 | * archures.c (bfd_mach_sparc_v9): Renamed from bfd_mach_sparc64. |
5bc513b4 | 547 | (bfd_mach_sparc_{v8plus,v8plusa}): Define. |
5bc513b4 | 548 | (bfd_mach_sparc_v9a): Define. |
049f3d4c | 549 | (bfd_mach_sparc_v9_p): Define. |
5bc513b4 DE |
550 | * bfd-in2.h: Regenerated. |
551 | * aoutx.h (aout,machine_type): bfd_mach_sparc64 renamed to | |
552 | bfd_mach_sparc_v9. | |
d3366d23 | 553 | * elf64-sparc.c (sparc64_elf_object_p): Likewise. |
5bc513b4 DE |
554 | * config.bfd (sparc64-*-sysv4*,sparc64-*-solaris2*): Set targ_defvec |
555 | to bfd_elf32_sparc_vec. | |
556 | * cpu-sparc.c (arch_info_struct): Renamed from sparc_arch_info. | |
5bc513b4 | 557 | Add v8plus{,a} support. |
5bc513b4 | 558 | Add v9a support. |
768b8ade | 559 | (sparc_compatible): New function. |
5bc513b4 | 560 | * elf32-sparc.h: #include "elf/sparc.h". |
75c9ddc9 | 561 | (elf32_sparc_merge_private_bfd_data, elf32_sparc_object_p, |
5bc513b4 | 562 | elf32_sparc_final_write_processing): New functions. |
75c9ddc9 | 563 | (bfd_elf32_bfd_merge_private_bfd_data, elf_backend_object_p, |
5bc513b4 | 564 | elf_backend_final_write_processing): Define. |
5bc513b4 | 565 | |
3b3753b8 MM |
566 | Mon Jan 22 11:21:51 1996 Michael Meissner <[email protected]> |
567 | ||
568 | * elf-bfd.h (struct elf_link_hash_entry): Add | |
569 | linker_section_pointer field. | |
570 | (enum elf_linker_section_enum): Enumeration for new way of | |
571 | creating linker dynamic sections and symbols. | |
572 | (elf_linker_section{,_pointers}): New structures for creating | |
573 | dynamic sections and symbols. | |
574 | (elf_obj_tdata): Add linker_section_pointers and linker_section | |
575 | fields. | |
576 | (elf_local_ptr_offsets,elf_linker_section): New accessor macros. | |
577 | (_bfd_elf_create_linker_section): New declarations. | |
578 | (_bfd_elf_find_pointer_linker_section): Ditto. | |
579 | (bfd_elf{32,64}_{create,finish}_pointer_linker_section): Ditto. | |
580 | (_bfd_elf_make_linker_section_rela): Ditto. | |
581 | ||
582 | * elf.c (_bfd_elf_link_hash_newfunc): Initialize new fields. | |
583 | ||
584 | * elf32-ppc.c (ppc_elf_create_dynamic_sections): Delete. | |
585 | (ppc_elf_create_linker_section): New function to create the | |
586 | sections .got, .sdata, and .sdata2. | |
587 | (ppc_elf_size_dynamic_sections): Zap .rela.{sdata,sdata2} if | |
588 | needed. | |
589 | (ppc_elf_check_relocs): Support more of the eabi relocations. | |
590 | (ppc_elf_relocate_section): Ditto. | |
591 | (ppc_elf_finish_dynamic_symbols): Adjust _SDA{,2}_BASE_ by 32768 | |
592 | if the .sdata{,2} + .sbss{,2} section size is > 32k. | |
593 | ||
594 | * elflink.h (elf_create_pointer_linker_section): New function to | |
595 | create initialized pointers in dynamic linker sections. | |
596 | (elf_finish_pointer_linker_section): Actually intialize the | |
597 | pointers created above. | |
598 | ||
599 | * elfcode.h (bfd_elf{32,64}_create_pointer_linker_section): New | |
600 | macros to provide both 32 and 64 bit versions of | |
601 | elf_create_pointer_linker_section. | |
602 | (bfd_elf{32,64}_finish_pointer_linker_section): New macros to | |
603 | provide both 32 and 64 bit versions of | |
604 | elf_finish_pointer_linker_section. | |
605 | ||
606 | * elflink.c (_bfd_elf_create_linker_section): New function to | |
607 | create a linker section. | |
608 | (_bfd_elf_find_pointer_linker_section): Find a unique pointer to a | |
609 | given address in the linker pointer offsets created for a given | |
610 | symbol. | |
611 | (_bfd_elf_make_linker_section_rela): Make a RELA section | |
612 | corresponding to the generated linker section. | |
613 | ||
6b3eb07e DE |
614 | Sat Jan 20 08:36:10 1996 Doug Evans <[email protected]> |
615 | ||
616 | * elf32-sparc.c (ELF_MACHINE_ALT1): Define. | |
617 | ||
e7894f6b KK |
618 | Thu Jan 18 18:25:34 1996 Kim Knuttila <[email protected]> |
619 | ||
620 | * coff-ppc.c (coff_ppc_relocate_section): changed TOCDEFN relocs. | |
621 | (coff_ppc_relocate_section): Handle special values for gcc built dlls. | |
622 | (dump_toc): fix diagnosing code to identify out-of-toc-bounds entries. | |
623 | Also begin the toc at 4 as an eye catcher ('31313131' marks the first | |
624 | toc entry in an objdump) for now. | |
625 | (ppc_do_last, ppc_get_last): New function - needed to save processing | |
626 | the toc owner to the end. | |
627 | (ppc_coff_swap_sym_in_hook): Removed an incorrect hack for doing the | |
628 | toc owner last. | |
629 | ||
630 | * cofflink.c (_bfd_coff_final_link): Added a new hack to keep the | |
631 | toc owner from being done till last. Must define POWERPC_LE_PC | |
632 | to enable it. | |
633 | ||
634 | * coffcode.h (coff_set_alignment_hook): alignment setting for .stab | |
635 | ||
636 | * peicode.h (coff_swap_scnhdr_out): set section flags for stab/str | |
637 | to INFO. | |
638 | (coff_swap_aouthdr_out): Removed a non-working hack for computing the | |
639 | SizeOfImage for PowerPC. Ignore the size of the .junk section. | |
640 | ||
80b99ca0 ILT |
641 | Thu Jan 18 17:42:12 1996 Ian Lance Taylor <[email protected]> |
642 | ||
643 | * elfcore.h: Include <signal.h> before <sys/procfs.h>. | |
644 | ||
df96df4c ILT |
645 | Wed Jan 17 12:40:14 1996 Ian Lance Taylor <[email protected]> |
646 | ||
647 | * cpu-powerpc.c (arch_info_struct): Change last entry to not point | |
648 | back to first. | |
649 | (bfd_powerpc_arch): Point at first entry in arch_info_struct. | |
650 | ||
d49ddb85 ILT |
651 | Tue Jan 16 15:10:49 1996 Ian Lance Taylor <[email protected]> |
652 | ||
653 | * elf.c (assign_file_positions_for_segments): Don't increment file | |
654 | offset for a segment which contains no loadable sections. | |
655 | ||
4500a112 MM |
656 | Mon Jan 15 17:46:27 1996 Michael Meissner <[email protected]> |
657 | ||
658 | * reloc.c: Add new PowerPC relocations. | |
659 | * {bfd-in2,libbfd}.h: Regenerate. | |
660 | ||
661 | * elf32-ppc.c (ppc_elf_howto_raw): Add more PPC relocations. | |
662 | (ppc_elf_reloc_type_lookup): Lookup new relocations. | |
663 | ||
252239f8 ILT |
664 | Mon Jan 15 14:29:44 1996 Ian Lance Taylor <[email protected]> |
665 | ||
20ab764e ILT |
666 | * aoutx.h (howto_table_ext): Fix RELOC_BASE10 and RELOC_BASE22 |
667 | entries. | |
668 | ||
0a4ffa2d ILT |
669 | * sunos.c (sunos_scan_ext_relocs): Don't fail assert if |
670 | info->shared. | |
671 | ||
45ca3195 ILT |
672 | * coffgen.c (coff_find_nearest_line): Don't try to cache |
673 | information in sections that are not owned by a BFD. From Richard | |
674 | Henderson <[email protected]>. | |
675 | ||
252239f8 ILT |
676 | * elf32-mips.c: Numerous changes to dynamic linking code, mostly |
677 | from Kazumoto Kojima <[email protected]>. | |
678 | * elflink.h (elf_link_output_extsym): Remove special check for | |
679 | _rld_new_interface. | |
680 | ||
681 | * ecoffswap.h: Add prototypes for static functions. | |
682 | ||
bd2d10c0 MM |
683 | Sun Jan 14 21:36:08 1996 Michael Meissner <[email protected]> |
684 | ||
685 | * elf32-ppc.c (ppc_elf_{unsupported,std}_reloc): Remove functions. | |
686 | (ppc_elf_howto_raw): Remove ppc_elf_{unsupported,std}_reloc | |
687 | references. | |
688 | (ppc_elf_relocate_section): No longer allow .sdata/.sbss sections | |
689 | to satisfy a TOC16 relocation. Rewrite unsupported relocation | |
690 | support. Begin support for R_PPC_SDA{2,}REL. | |
691 | ||
1c3a295b MM |
692 | Sat Jan 13 09:36:52 1996 Michael Meissner <[email protected]> |
693 | ||
694 | * elf32-ppc.c (ppc_elf_create_dynamic_sections): New function to | |
695 | create the .got and .got.neg sections. | |
696 | (ppc_elf_size_dynamic_sections): Call it. | |
697 | (ppc_elf_check_relocs): Call it. | |
698 | (ppc_elf_size_dynamic_sections): Support .got.neg, just like .got. | |
699 | (ppc_elf_check_relocs): Add error messages for relocations we | |
700 | don't yet support. Do not include R_PPC_SDAREL16 like a GOT | |
701 | relocation. | |
702 | ||
57081126 MM |
703 | Fri Jan 12 15:27:59 1996 Michael Meissner <[email protected]> |
704 | ||
705 | * elf32-ppc.c (ppc_elf_fake_sections): Define, and handle the new | |
706 | section flags for V.4 and eabi. | |
707 | ||
3c38b3df ILT |
708 | Fri Jan 12 13:59:16 1996 Ian Lance Taylor <[email protected]> |
709 | ||
14899eb7 ILT |
710 | * elf.c (assign_file_positions_for_segments): If a segment |
711 | contains no sections, don't mark it as readable. | |
712 | ||
98bb57ad ILT |
713 | * elf-bfd.h (_bfd_elf_section_from_bfd_section): Declare. |
714 | * elfcode.h (_bfd_elf_section_from_bfd_section): Don't declare. | |
715 | ||
02fcd126 ILT |
716 | * elf.c (_bfd_elf_print_private_bfd_data): Dump contents of |
717 | dynamic section, if there is one. | |
718 | * elf-bfd.h (struct elf_size_info): Add swap_dyn_in field. | |
719 | (bfd_elf32_swap_dyn_in): Change type of second parameter to PTR. | |
720 | (bfd_elf64_swap_dyn_in): Likewise. | |
721 | * elfcode.h (elf_swap_dyn_in): Change type of second parameter to | |
722 | PTR. | |
723 | (NAME(_bfd_elf,size_info)): Initialize swap_dyn_in field. | |
724 | ||
3c38b3df ILT |
725 | * elf32-i386.c (elf_i386_size_dynamic_sections): Don't create a |
726 | DT_TEXTREL entry because of .rel.plt. From Martin Pirker | |
727 | <[email protected]>. | |
728 | ||
83f4323e MM |
729 | Thu Jan 11 17:06:14 1996 Michael Meissner <[email protected]> |
730 | ||
731 | * section.c (SEC_{EXCLUDE,SORT_ENTRIES}): New section flags for | |
732 | PowerPC V.4 and eabi. | |
733 | * bfd-in2.h: Regenerate. | |
734 | * libfd.h: Regenerate. | |
735 | ||
736 | * elfxx-target.h (TARGET_{BIG,LITTLE}_SYM): Add new flags. | |
737 | ||
738 | * elf32-ppc.c (ppc_elf_section_from_shdr): Support SHT_ORDERED | |
739 | section type and SHF_EXCLUDE section flag, turning them into the | |
740 | appropriate bfd section flag. | |
741 | ||
a0271667 ILT |
742 | Thu Jan 11 11:23:30 1996 Ian Lance Taylor <[email protected]> |
743 | ||
c9746fb6 ILT |
744 | * xcofflink.c (xcoff_link_add_symbols): Create the special |
745 | sections if we see a DYNAMIC object, in case that is the only | |
746 | XCOFF input object we see. | |
747 | ||
5b3b9ff6 ILT |
748 | * elf32-mips.c: Extensive changes for a start at dynamic linking |
749 | support, from Kazumoto Kojima <[email protected]>. | |
750 | ||
751 | * elf-bfd.h (struct elf_backend_data): Add type_change_ok field. | |
752 | (struct elf_backend_data): Remove | |
753 | elf_backend_create_program_headers field. Add | |
754 | elf_backend_additional_program_headers and | |
755 | elf_backend_modify_segment_map fields. | |
756 | * elfxx-target.h (elf_backend_type_change_ok): Define if not | |
757 | defined. | |
758 | (elf_backend_additional_program_headers): Likewise. | |
759 | (elf_backend_modify_segment_map): Likewise. | |
760 | (elf_backend_create_program_headers): Don't define. | |
761 | (elfNN_bed): Change to account for field changes. | |
762 | * elf.c (assign_file_positions_for_segments): Call new | |
763 | modify_segment_map backend function. Don't call old | |
764 | create_program_headers backend function. | |
765 | (get_program_header_size): Call additional_program_headers rather | |
766 | than create_program_headers. | |
767 | * elflink.h (elf_link_add_object_symbols): Initialize | |
768 | type_change_ok from new backend field. | |
769 | (elf_link_output_extsym): Don't warn if _rld_new_interface is | |
770 | defined. | |
771 | (elf_reloc_link_order): Treat a reloc against a defined symbol as | |
772 | a reloc against the appropriate section. | |
773 | ||
761f377f ILT |
774 | * elf-bfd.h (struct bfd_elf_section_data): Add tdata field. |
775 | (struct elf_obj_tdata): Rename ppc_flags_init field to flags_init. | |
776 | (elf_flags_init): Rename from elf_ppc_flags_init. | |
777 | * elf32-ppc.c (ppc_elf_set_private_flags): Use elf_flags_init, not | |
778 | elf_ppc_flags_init. | |
779 | (ppc_elf_copy_private_bfd_data): Likewise. | |
780 | (ppc_elf_merge_private_bfd_data): Likewise. | |
781 | ||
a0271667 ILT |
782 | * elf32-m68k.c (howto_table): Change src_mask to 0 for all |
783 | relocation entries. | |
784 | ||
64d5f5d0 ILT |
785 | Tue Jan 9 15:22:53 1996 David Mosberger-Tang <[email protected]> |
786 | ||
787 | * coff-alpha.c (alpha_relocate_section): During final link, allow | |
788 | output .lita section to be bigger than 64k by adjusting gp value | |
789 | on a per-input section basis. | |
790 | * libecoff.h (struct ecoff_tdata): Add issued_multiple_gp_warning | |
791 | field. | |
792 | (struct ecoff_section_tdata): Add gp field. | |
793 | ||
c40d9c77 ILT |
794 | Tue Jan 9 12:00:36 1996 Ian Lance Taylor <[email protected]> |
795 | ||
64d5f5d0 ILT |
796 | Handle Alpha ECOFF changes in OSF/1 3.2. |
797 | * libecoff.h (struct ecoff_backend_data): Add get_elt_at_filepos | |
798 | field. | |
799 | * coff-alpha.c: Include "aout/ar.h". | |
800 | (alpha_ecoff_get_relocated_section_contents): Don't require an | |
801 | ALPHA_R_IGNORE reloc after an ALPHA_R_GPDISP reloc, since OSF/1 | |
802 | 3.2 doesn't generate one. | |
803 | (alpha_relocate_section): Likewise. | |
804 | (alpha_ecoff_slurp_armap): Define. | |
805 | (alpha_ecoff_slurp_extended_name_table): Define. | |
806 | (alpha_ecoff_construct_extended_name_table): Define. | |
807 | (alpha_ecoff_truncate_arname): Define. | |
808 | (alpha_ecoff_write_armap): Define. | |
809 | (alpha_ecoff_generic_stat_arch_elt): Define. | |
810 | (alpha_ecoff_update_armap_timestamp): Define. | |
811 | (ARFZMAG): Define. | |
812 | (alpha_ecoff_read_ar_hdr): New static function. | |
813 | (alpha_ecoff_get_elt_at_filepos): New static function. | |
814 | (alpha_ecoff_openr_next_archived_file): New static function. | |
815 | (alpha_ecoff_get_elt_at_index): New static function. | |
816 | (alpha_ecoff_backend_data): Initialize get_elt_at_filepos field. | |
817 | (ecoffalpha_little_vec): Change BFD_JUMP_TABLE_ARCHIVE from | |
818 | _bfd_ecoff to alpha_ecoff. | |
819 | * ecoff.c (ecoff_link_add_archive_symbols): Use get_elt_at_filepos | |
820 | field from backend structure, rather than always calling | |
821 | _bfd_get_elt_at_filepos. | |
822 | * coff-mips.c (mips_ecoff_backend_data): Initialize | |
823 | get_elt_at_filepos field. | |
824 | * archive.c (_bfd_generic_read_ar_hdr_mag): New function, copied | |
825 | from _bfd_generic_read_ar_hdr with minor changes. | |
826 | (_bfd_generic_read_ar_hdr): Use _bfd_generic_read_ar_hdr_mag. | |
827 | * libbfd-in.h (_bfd_generic_read_ar_hdr_mag): Declare. | |
828 | * libbfd.h: Rebuild. | |
829 | ||
830 | * bfd-in.h (BFD_IN_MEMORY): Define. | |
831 | * libbfd-in.h (struct bfd_in_memory): Define. | |
832 | * libbfd.c (bfd_read): Handle BFD_IN_MEMORY flag. | |
833 | (bfd_get_file_window): Don't try to map a BFD_IN_MEMORY file. | |
834 | (bfd_write, bfd_stat): Abort if BFD_IN_MEMORY is set. | |
835 | (bfd_tell, bfd_flush, bfd_seek): Handle BFD_IN_MEMORY flag. | |
836 | * bfd.c (struct _bfd): Change iostream field from char * to PTR. | |
837 | (bfd_get_size): Handle BFD_IN_MEMORY flag. | |
838 | * cache.c (bfd_cache_close): Ignore BFD_IN_MEMORY files. | |
839 | (bfd_open_file): Cast to PTR, not char *, when setting iostream. | |
840 | (bfd_cache_lookup_worker): Abort if BFD_IN_MEMORY is set. | |
841 | * opncls.c (bfd_fdopenr): Cast to PTR, not char *, when setting | |
842 | iostream. | |
843 | (bfd_openstreamr): Likewise. | |
844 | * aoutx.h (NAME(aout,some_aout_object_p)): Only fstat iostream if | |
845 | BFD_IN_MEMORY is not set. | |
846 | * riscix.c (riscix_some_aout_object_p): Likewise. | |
847 | * bfd-in2.h, libbfd.h: Rebuild. | |
848 | ||
849 | * targets.c (bfd_target): Add _bfd_get_elt_at_index field. | |
850 | (BFD_JUMP_TABLE_ARCHIVE): Add _get_elt_at_index. | |
851 | (bfd_get_elt_at_index): Define. | |
852 | * archive.c (_bfd_generic_get_elt_at_index): Rename from | |
853 | bfd_get_elt_at_index. Change index parameter from int to | |
854 | symindex. | |
855 | * libbfd-in.h (_bfd_generic_get_elt_at_index): Declare. | |
856 | (_bfd_noarchive_get_elt_at_index): Define. | |
857 | (_bfd_archive_bsd_get_elt_at_index): Define. | |
858 | (_bfd_archive_coff_get_elt_at_index): Define. | |
859 | * bfd-in2.h, libbfd.h: Rebuild. | |
860 | * aout-target.h (MY_get_elt_at_index): Define if not defined. | |
861 | * coff-rs6000.c (xcoff_get_elt_at_index): Define. | |
862 | * ieee.c (ieee_get_elt_at_index): Define. | |
863 | * libecoff.h (_bfd_ecoff_get_elt_at_index): Define. | |
864 | * oasys.c (oasys_get_elt_at_index): Define. | |
865 | * som.c (som_get_elt_at_index): Define. | |
866 | ||
c40d9c77 ILT |
867 | * ecoff.c (_bfd_ecoff_find_nearest_line): Don't restrict line |
868 | numbers to the .text section. | |
869 | ||
efa77952 ILT |
870 | Mon Jan 8 17:00:57 1996 Ian Lance Taylor <[email protected]> |
871 | ||
872 | * ieee.c (ieee_write_debug_part): Change return type to boolean. | |
873 | If there is a SEC_DEBUGGING section, get the contents of the debug | |
874 | information part from it. | |
875 | (ieee_set_section_contents): Store the contents of a SEC_DEBUGGING | |
876 | section in memory. | |
877 | (ieee_write_object_contents): Check ieee_write_debug_part return. | |
878 | ||
767f22d5 FF |
879 | Thu Jan 4 17:12:37 1996 Fred Fish <[email protected]> |
880 | ||
881 | * config.bfd (i[345]86-*-freebsd*): Add target. | |
882 | * configure.in (i386freebsd_vec): Add vec. | |
883 | * configure: Regenerate. | |
884 | * Makefile.in (BFD32_BACKENDS): Add i386freebsd.o. | |
885 | (BFD32_BACKENDS_CFILES): Add i386freebsd.c. | |
886 | Rebuild dependencies.. | |
887 | * freebsd.h: New file. | |
888 | * i386freebsd.c: New file. | |
889 | * targets.c (i386freebsd_vec): Declare. | |
890 | (bfd_target_vector): Add i386freebsd_vec. | |
891 | * i386linux.c (SEGMENT_SIZE): Define as TARGET_PAGE_SIZE | |
892 | * i386netbsd.c (SEGMENT_SIZE): Define as TARGET_PAGE_SIZE | |
893 | ||
f8254a3c ILT |
894 | Thu Jan 4 16:27:46 1996 Ian Lance Taylor <[email protected]> |
895 | ||
896 | * ieee.c (ieee_slurp_debug): New static function. | |
897 | (ieee_object_p): Call it. | |
898 | (ieee_slurp_section_data): Skip debugging sections. | |
899 | (ieee_get_reloc_upper_bound): Likewise. | |
900 | (ieee_get_section_contents): Likewise. | |
901 | (ieee_canonicalize_reloc): Likewise. | |
902 | (ieee_write_section_part): Likewise. | |
903 | (ieee_write_debug_part): Likewise. | |
904 | (ieee_write_data_part): Likewise. | |
905 | (init_for_output): Likewise. | |
906 | ||
07a159db MM |
907 | Wed Jan 3 19:42:47 1996 Michael Meissner <[email protected]> |
908 | ||
909 | * elf32-ppc.c (ppc_elf_relocate_section): Make @GOT relocations | |
910 | work. | |
911 | (ppc_elf_howto_raw): Just use bfd_elf_generic_reloc for all howto | |
912 | relocs, since ppc_elf_relocate_section handles the linker case. | |
913 | (ppc_elf_{addr16_ha,got16,toc16,brtaken}_reloc): Delete, no longer | |
914 | used. | |
915 | (ppc_elf_{addr16_ha,got16,toc16,brtaken}_inner): Merge these into | |
916 | ppc_elf_relocate_section since that is now the only caller. | |
917 | (ppc_elf_relocate_section): Ditto. | |
918 | ||
d812945a ILT |
919 | Wed Jan 3 15:11:30 1996 Ian Lance Taylor <[email protected]> |
920 | ||
921 | * coffcode.h (coff_write_object_contents): If we don't know the | |
922 | section of the entry point for an XCOFF executable, always set the | |
923 | entry address to -1. | |
924 | ||
3a56d0b4 MM |
925 | Tue Jan 2 14:17:15 1996 Michael Meissner <[email protected]> |
926 | ||
927 | * elf.c (bfd_section_from_shdr): Add support for note sections. | |
928 | ||
c4406e50 ILT |
929 | Tue Jan 2 13:10:25 1996 Ian Lance Taylor <[email protected]> |
930 | ||
d812945a ILT |
931 | * bfd-in.h (struct _symbol_info): Add stab_type field. |
932 | * bfd-in2.h: Rebuild. | |
933 | * aoutx.h (NAME(aout,get_symbol_info)): Set stab_type. | |
934 | ||
c4406e50 ILT |
935 | * elf32-ppc.c: Remove trailing newline from calls to |
936 | _bfd_error_handler. | |
937 | (ppc_elf_merge_private_bfd_data): Only warn about endianness | |
938 | difference if target endianness is known. | |
939 | ||
08556813 MM |
940 | Thu Dec 21 12:43:49 1995 Michael Meissner <[email protected]> |
941 | ||
942 | * elf32-ppc.c (ppc_elf_howto_raw): Add a phony reloc to handle the | |
943 | old style TOC16 references without using R_PPC_GOT. | |
944 | (ppc_reloc_type): Ditto. | |
945 | (ppc_elf_reloc_type_lookup): Add support for TOC16. | |
946 | (ppc_elf_toc16_inner): Renamed from ppc_elf_got16_inner. | |
947 | (ppc_elf_toc16_reloc): Renamed from ppc_elf_toc16_reloc. | |
948 | (ppc_elf_got16_{inner,reloc}): Stubs for real GOT support. | |
949 | (ppc_elf_check_relocs): New function for GOT/PLT support that is | |
950 | work in progress. | |
951 | (ppc_elf_adjust_dynamic_symbol): Ditto. | |
952 | (ppc_elf_adjust_dynindx): Ditto. | |
953 | (ppc_elf_size_dynamic_sections): Ditto. | |
954 | (ppc_elf_finish_dynamic_symbol): Ditto. | |
955 | (ppc_elf_finish_dynamic_sections): Ditto. | |
956 | (ELF_DYNAMIC_INTERPRETER): Define. | |
957 | ||
86587dd4 KR |
958 | Wed Dec 20 19:14:18 1995 Ken Raeburn <[email protected]> |
959 | ||
960 | * elf.c (copy_private_bfd_data): When attaching sections to | |
961 | segments ignore sections that won't be allocated. Patch from | |
962 | Andreas Schwab. | |
963 | ||
bf7f243f KR |
964 | Tue Dec 19 20:01:43 1995 Ken Raeburn <[email protected]> |
965 | ||
966 | * config.bfd: Match on m68k-cbm-* only if OS doesn't match | |
967 | anything else. | |
968 | ||
d9518e2e ILT |
969 | Tue Dec 19 16:38:59 1995 Ian Lance Taylor <[email protected]> |
970 | ||
971 | * coff-i960.c (CALC_ADDEND): Define. | |
972 | (coff_i960_relocate_section): Add the input section VMA to the | |
973 | addend for PC relative relocs. | |
974 | ||
975 | Sun Dec 17 20:11:55 1995 Kim Knuttila <[email protected]> | |
976 | ||
977 | * peicode.h (pe_print_pdata): Must test the entire entry for zero | |
978 | to correctly terminate. | |
979 | ||
010a405a ILT |
980 | Fri Dec 15 12:05:57 1995 Ian Lance Taylor <[email protected]> |
981 | ||
dc092b6b ILT |
982 | * targets.c (enum bfd_endian): Define. |
983 | (bfd_target): Rename byteorder_big_p to byteorder, and change it | |
984 | from boolean to enum bfd_endian. Change header_byteorder_big_p | |
985 | correspondingly. | |
986 | * bfd-in.h (bfd_big_endian, bfd_little_endian): New macros. | |
987 | (bfd_header_big_endian, bfd_header_little_endian): New macros. | |
988 | * bfd-in2.h: Rebuild. | |
989 | * All targets: Change initialization of byteorder and | |
990 | header_byteorder to use enum bfd_endian values rather than | |
991 | booleans. | |
992 | * All files: Change all references to byteorder_big_p and | |
993 | header_byteorder_big_p to use new bfd_*_endian macros. | |
994 | ||
010a405a ILT |
995 | * coffgen.c (make_a_section_from_file): Set lma to s_paddr, not |
996 | s_vaddr. | |
997 | * coffcode.h (coff_write_object_contents): Set s_paddr to lma, not | |
998 | vma. | |
999 | * ecoff.c (_bfd_ecoff_write_object_contents): Likewise. | |
1000 | ||
fcb43906 SC |
1001 | Fri Dec 15 07:32:09 1995 steve chamberlain <[email protected]> |
1002 | ||
1003 | * pe[i]-i386.c (TARGET_UNDERSCORE): Define to '_'. | |
1004 | ||
0d709d31 ILT |
1005 | Thu Dec 14 13:45:37 1995 Ian Lance Taylor <[email protected]> |
1006 | ||
14578105 ILT |
1007 | * ieee.c: Lots of minor cleanups. Make many functions return |
1008 | errors rather than calling abort. Also: | |
1009 | (ieee_write_twobyte): Remove; change callers to call existing | |
1010 | ieee_write_2bytes function. | |
1011 | (ieee_write_expression): Don't output the section twice when | |
1012 | outputting a local symbol. Don't emit an extraneous zero if there | |
1013 | is only one term. | |
1014 | (ieee_slurp_sections): Set the lma as well as the vma. | |
1015 | (ieee_archive_p): Use bfd_alloc_grow rather than an obstack. | |
1016 | ||
0d709d31 ILT |
1017 | * ihex.c (ihex_set_arch_mach): Don't accept any architecture, just |
1018 | a recognized one or bfd_arch_unknown. | |
1019 | (ihex_get_symtab_upper_bound): Define as bfd_0l, to permit objcopy | |
1020 | to succeed. | |
1021 | (ihex_get_symtab): Likewise. | |
1022 | ||
14dc2f77 ILT |
1023 | Wed Dec 13 15:44:06 1995 Ian Lance Taylor <[email protected]> |
1024 | ||
1025 | * aoutx.h: Include <ctype.h>. | |
1026 | (struct aout_link_includes_table): Define. | |
1027 | (struct aout_link_includes_totals): Define. | |
1028 | (struct aout_link_includes_entry): Define. | |
1029 | (aout_link_includes_lookup): Define macro. | |
1030 | (struct aout_final_link_info): Add includes field. | |
1031 | (aout_link_includes_newfunc): New static function. | |
1032 | (NAME(aout,final_link)): Initialize includes hash table. | |
1033 | (aout_link_write_symbols): Eliminate duplicate N_BINCL entries. | |
1034 | ||
480ccad5 SS |
1035 | Wed Dec 13 10:52:14 1995 Stan Shebs <[email protected]> |
1036 | ||
1037 | * mpw-config.in: Match on mips-*-* instead of mips-idt-ecoff. | |
1038 | ||
3920d9c9 KK |
1039 | Wed Dec 13 11:07:45 1995 Kim Knuttila <[email protected]> |
1040 | ||
1041 | * coff-ppc.c (coff_ppc_relocate_section): removed debugging code. | |
1042 | ||
207345f2 KK |
1043 | Tue Dec 12 17:42:06 1995 Kim Knuttila <[email protected]> |
1044 | ||
1045 | * peicode.h (pe_print_reloc): New function to dump the .reloc section. | |
1046 | (pe_print_private_bfd_data): call pe_print_reloc. | |
1047 | * coffcode.h (coff_set_alignment_hook): .reloc section alignment. | |
1048 | * coff-ppc.c (in_reloc_p): Added missing non-eligible relocs. Spiffed | |
1049 | up some debugging as well. | |
1050 | ||
273c019e ILT |
1051 | Tue Dec 12 11:34:23 1995 Ian Lance Taylor <[email protected]> |
1052 | ||
1053 | * config.bfd: Handle sparc-*-elf*. From Ronald F. Guilmette | |
1054 | <[email protected]>. | |
1055 | ||
010d9f2d ILT |
1056 | Fri Dec 8 17:47:07 1995 Ian Lance Taylor <[email protected]> |
1057 | ||
1058 | * elflink.h (elf_link_add_object_symbols): Set section_count to 0 | |
1059 | when setting sections to NULL. | |
1060 | ||
4a4a66bd ILT |
1061 | Wed Dec 6 17:05:37 1995 Ian Lance Taylor <[email protected]> |
1062 | ||
1063 | * xcofflink.c (struct xcoff_loader_info): Add export_defineds | |
1064 | field. | |
1065 | (bfd_xcoff_size_dynamic_sections): Add export_defineds parameter. | |
1066 | (xcoff_build_ldsyms): If export_defineds is set, set XCOFF_EXPORT | |
1067 | for all symbols. | |
1068 | * bfd-in.h (bfd_xcoff_size_dynamic_sections): Update declaration. | |
1069 | * bfd-in2.h: Rebuild. | |
1070 | ||
545bf026 KK |
1071 | Mon Dec 4 16:40:47 1995 Kim Knuttila <[email protected]> |
1072 | ||
1073 | * coffcode.h (coff_set_alignment_hook): Removed some debugging printf's | |
1074 | ||
1f4ae0d6 ILT |
1075 | Mon Dec 4 11:25:39 1995 Ian Lance Taylor <[email protected]> |
1076 | ||
55cac920 ILT |
1077 | * ihex.c (ihex_scan): Handle record types 4 and 5. |
1078 | (ihex_object_p): Permit types 4 and 5. | |
1079 | (ihex_set_section_contents): Remove check for out of range | |
1080 | addresses. | |
1081 | (ihex_write_object_contents): Generate types 4 and 5. | |
1082 | ||
1f4ae0d6 ILT |
1083 | * elflink.h (elf_link_output_extsym): Just ignore warning and |
1084 | indirect references to symbols which don't really exist. | |
1085 | ||
53d45489 KK |
1086 | Sun Dec 3 19:00:27 1995 Kim Knuttila <[email protected]> |
1087 | ||
1088 | * peicode.h (pe_print_idata): Minor format fixes | |
1089 | (pe_print_edata): New function. Under private printing, this formats | |
1090 | the edata section of a PE file. | |
1091 | (pe_print_private_bfd_data): Added call to pe_print_edata. | |
1092 | ||
361e8876 DE |
1093 | Sun Dec 3 16:46:54 1995 Richard Earnshaw ([email protected]) |
1094 | ||
1095 | * aout-arm.c (MY_swap_std_reloc_out): Use KEEPIT to get the symbol | |
1096 | index, don't call stoi. | |
1097 | ||
58142f10 ILT |
1098 | Fri Dec 1 14:46:51 1995 Ian Lance Taylor <[email protected]> |
1099 | ||
ffd15489 ILT |
1100 | * srec.c (srec_scan): Set lma as well as vma. |
1101 | ||
1102 | * ihex.c: New file; support for Intel Hex format. | |
1103 | * targets.c (enum bfd_flavour): Add bfd_target_ihex_flavour. | |
1104 | (ihex_vec): Declare. | |
1105 | (bfd_target_vector): Always include ihex_vec. | |
1106 | * bfd.c (struct _bfd): Add ihex_data field to tdata union. | |
1107 | * Makefile.in: Rebuild dependencies. | |
1108 | (BFD_LIBS): Add ihex.o | |
1109 | (BFD_LIBS_CFILES): Add ihex.c. | |
1110 | * bfd-in2.h: Rebuild. | |
1111 | ||
ae0a6bea ILT |
1112 | * elf.c (assign_file_positions_for_segments): Sort the sections in |
1113 | each segment. | |
1114 | (get_program_header_size): Return the right size if segment_map is | |
1115 | not NULL. | |
1116 | (copy_private_bfd_data): Don't bother to sort the sections. | |
1117 | ||
1118 | * bfd.c (bfd_record_phdr): New function. | |
1119 | * bfd-in.h (bfd_record_phdr): Declare. | |
1120 | * bfd_in2.h: Rebuild. | |
1121 | ||
ce0ee4bf ILT |
1122 | * elf32-sparc.c (elf32_sparc_relocate_section): Remove bogus |
1123 | BFD_ASSERT. | |
1124 | ||
58142f10 ILT |
1125 | * libbfd.c (bfd_malloc, bfd_realloc): New functions. |
1126 | (bfd_zmalloc): Return PTR, not char *. Take size_t, not | |
1127 | bfd_size_type. | |
1128 | * libbfd-in.h (bfd_malloc, bfd_realloc): Declare. | |
1129 | (bfd_zmalloc): Change declaration. | |
1130 | * libbfd.h: Rebuild. | |
1131 | * Many files: Use bfd_malloc and bfd_realloc rather than malloc | |
1132 | and realloc. Don't set bfd_error_no_memory if they fail. | |
1133 | ||
59066248 KK |
1134 | Thu Nov 30 19:32:26 1995 Kim Knuttila <[email protected]> |
1135 | ||
1136 | * coff-ppc.c: Added macros to tidy up toc cell treatment. Numerous | |
1137 | uses as well. Added a new howto to deal with TOCREL16 relocs that | |
1138 | are TOCDEFN as well. | |
1139 | (coff_ppc_relocate_section): Expanded treatment of ADDR32NB relocs | |
1140 | to handle RVA relocs from dlltool. | |
1141 | (ppc_coff_rtype2howto): TOCDEFN reloc addition. | |
1142 | (coff_ppc_rtype_to_howto): TOCDEFN reloc addition. | |
1143 | (ppc_coff_reloc_type_lookup): TOCDEFN reloc addition. | |
1144 | ||
1145 | * coffcode.h (coff_set_alignment_hook): check idata$X sections | |
1146 | to get the right section alignment. | |
1147 | ||
6933148a ILT |
1148 | Thu Nov 30 16:48:18 1995 Ian Lance Taylor <[email protected]> |
1149 | ||
1150 | * elf.c (_bfd_elf_make_section_from_shdr): Don't set lma based on | |
1151 | p_paddr if p_paddr is zero. | |
1152 | (make_mapping): Set includes_filehdr and includes_phdrs for first | |
1153 | PT_LOAD segment. | |
1154 | (map_sections_to_segments): Set includes_phdrs for PT_PHDR | |
1155 | segment. | |
1156 | (assign_file_positions_for_segments): Handle includes_filehdr and | |
1157 | includes_phdrs. Remove special handling of PT_PHDR and first | |
1158 | PT_LOAD segments. | |
1159 | (copy_private_bfd_data): Set includes_filehdr and includes_phdr | |
1160 | when appropriate. Remove special handling of PT_PHDR segment. | |
1161 | Use a more complex condition for when a section is included in a | |
1162 | segment to handle Solaris linker oddities. | |
1163 | ||
f62fed1c ILT |
1164 | Thu Nov 30 11:17:33 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <[email protected]> |
1165 | ||
1166 | * coff-m88k.c (howto_table): Reformatted for easier reading; | |
1167 | special_function now points to new function m88k_special_reloc. | |
1168 | (howto_hvrt16): Function previously used for handling HVRT16 relocs | |
1169 | removed. | |
1170 | (rtype2howto): Do not add reloc's r_offset to the addend, this will | |
1171 | be done correctly by m88k_special_reloc. | |
1172 | (reloc_processing): New function to be used by RELOC_PROCESSING. | |
1173 | (RELOC_PROCESSING): Define to call reloc_processing. | |
1174 | ||
64ecde46 ILT |
1175 | Wed Nov 29 12:42:36 1995 Ian Lance Taylor <[email protected]> |
1176 | ||
b00c57ec ILT |
1177 | * peicode.h (pe_print_idata): Call malloc rather than xmalloc. |
1178 | (pe_print_pdata): Likewise. | |
1179 | ||
a9713b91 ILT |
1180 | * opncls.c (bfd_alloc_by_size_t): Set bfd_error_no_memory if |
1181 | obstack_alloc fails. | |
1182 | (bfd_alloc_finish): Set bfd_error_no_memory if obstack_finish | |
1183 | fails. | |
1184 | * libbfd.c (bfd_zmalloc): Set bfd_error_no_memory if malloc fails. | |
1185 | * Many files: don't set bfd_error_no_memory if one of the above | |
1186 | routines fails. | |
1187 | ||
3dbf33ee ILT |
1188 | * elf.c (assign_file_positions_for_segments): Don't adjust p_paddr |
1189 | if p_paddr_valid is set. | |
1190 | (copy_private_bfd_data): New static function. | |
1191 | (_bfd_elf_copy_private_section_data): Call copy_private_bfd_data. | |
1192 | ||
44ef8897 ILT |
1193 | * elf.c (assign_file_positions_for_segments): Fix case where extra |
1194 | program headers were allocated. | |
1195 | ||
27fb8f29 ILT |
1196 | * elf.c (_bfd_elf_print_private_bfd_data): New function. |
1197 | * elf-bfd.h (_bfd_elf_print_private_bfd_data): Declare. | |
1198 | * elfxx-target.h (bfd_elfNN_bfd_print_private_bfd_data): Define to | |
1199 | _bfd_elf_print_private_bfd_data. | |
1200 | ||
64ecde46 ILT |
1201 | * coff-alpha.c (alpha_ecoff_swap_reloc_in): Don't abort if |
1202 | r_symndx is RELOC_SECTION_NONE for an ALPHA_R_IGNORE reloc. | |
1203 | Change a RELOC_SECTION_LITA symndx to RELOC_SECTION_ABS. | |
1204 | (alpha_ecoff_swap_reloc_out): Change RELOC_SECTION_ABS to | |
1205 | RELOC_SECTION_LITA for ALPHA_R_IGNORE. | |
1206 | (alpha_adjust_reloc_out): For ALPHA_R_IGNORE, don't change | |
1207 | RELOC_SECTION_ABS to RELOC_SECTION_NONE. | |
1208 | ||
fd0198f0 ILT |
1209 | Tue Nov 28 16:59:50 1995 Ian Lance Taylor <[email protected]> |
1210 | ||
1211 | * elf-bfd.h (struct elf_obj_tdata): Add segment_map field. | |
1212 | * elf.c (make_mapping): New static function. | |
1213 | (map_sections_to_segments): New static function. | |
1214 | (elf_sort_sections): New static function. | |
1215 | (assign_file_positions_for_segments): New static function. | |
1216 | (map_program_segments): Remove. | |
1217 | (get_program_header_size): Remove sorted_hdrs, count, and | |
1218 | maxpagesize parameters. Simplify. | |
1219 | (assign_file_positions_except_relocs): When generating an | |
1220 | executable, use assign_file_positions_for_segments. | |
1221 | (elf_sort_hdrs): Remove. | |
1222 | (_bfd_elf_sizeof_headers): Remove eliminated parameters from call | |
1223 | to get_program_header_size. | |
1224 | ||
3b3f7625 ILT |
1225 | Mon Nov 27 12:27:46 1995 Ian Lance Taylor <[email protected]> |
1226 | ||
1ff0461b ILT |
1227 | * hp300hpux.c (MY(callback)): Set lma as well as vma. |
1228 | ||
80c8485c ILT |
1229 | * configure, config.in: Regenerate with autoconf 2.7. |
1230 | ||
3b3f7625 ILT |
1231 | * elf32-i386.c (elf_backend_plt_readonly): Set correctly, to 1. |
1232 | * elf32-sparc.c (elf_backend_plt_readonly): Set correctly, to 0. | |
1233 | ||
fa63d1ef ILT |
1234 | Wed Nov 22 12:02:09 1995 Ian Lance Taylor <[email protected]> |
1235 | ||
a877f591 ILT |
1236 | * ecoff.c (_bfd_ecoff_new_section_hook): Handle .rconst section. |
1237 | (ecoff_sec_to_styp_flags): Likewise. | |
1238 | (_bfd_ecoff_styp_to_sec_flags): Handle STYP_RCONST. | |
1239 | (ecoff_set_symbol_info): Handle scRConst. | |
1240 | (ecoff_slurp_reloc_table): Handle RELOC_SECTION_RCONST. | |
1241 | (ecoff_compute_section_file_positions): Handle .rconst section. | |
1242 | (_bfd_ecoff_write_object_contents): Likewise. | |
1243 | (ecoff_link_check_archive_element): Handle scRConst. | |
1244 | (ecoff_link_add_externals): Likewise. | |
1245 | (ecoff_link_write_external): Handle .rconst section. | |
1246 | (ecoff_reloc_link_order): Likewise. | |
1247 | * ecofflink.c (bfd_ecoff_debug_accumulate): Handle scRConst. | |
1248 | * coff-alpha.c (alpha_convert_external_reloc): Handle .rconst | |
1249 | section. | |
1250 | (alpha_relocate_section): Handle RELOC_SECTION_RCONST. | |
1251 | ||
fa63d1ef ILT |
1252 | * sunos.c (sunos_scan_dynamic_symbol): Only set written if the |
1253 | DEF_DYNAMIC flag is set. | |
1254 | ||
25bada65 KR |
1255 | Tue Nov 21 13:25:29 1995 Ken Raeburn <[email protected]> |
1256 | ||
1257 | * host-aout.c: If TRAD_HEADER is defined, include it. | |
1258 | ||
7938b4cb ILT |
1259 | Tue Nov 21 13:03:57 1995 Ian Lance Taylor <[email protected]> |
1260 | ||
85e493f0 ILT |
1261 | * aclocal.m4 (AC_PROG_CC): Remove local definition. |
1262 | (BFD_BINARY_FOPEN): Require AC_CANONICAL_SYSTEM. | |
1263 | (BFD_NEED_DECLARATION): New function. | |
1264 | * configure.in: Use BFD_NEED_DECLARATION. | |
bd77213b ILT |
1265 | * acconfig.h: Put NEED_DECLARATION_* in @TOP@ section. |
1266 | * configure, config.in: Rebuild with autoconf 2.6. | |
85e493f0 | 1267 | |
83dcdc61 ILT |
1268 | * xcofflink.c (bfd_xcoff_size_dynamic_sections): Clear |
1269 | special_sections before returning when called with a non XCOFF | |
1270 | BFD. | |
1271 | ||
7938b4cb ILT |
1272 | * coffgen.c (coff_renumber_symbols): Sort common symbols with |
1273 | global symbols. | |
1274 | ||
1275 | * coffcode.h (coff_compute_section_file_positions): Only pad the | |
1276 | previous section to force file alignment when creating an | |
1277 | executable. | |
1278 | ||
b5403ad7 ILT |
1279 | Mon Nov 20 14:54:09 1995 Ian Lance Taylor <[email protected]> |
1280 | ||
a418e05d ILT |
1281 | * coffcode.h (coff_compute_section_file_positions): If |
1282 | RS6000COFF_C, set up the .debug section. | |
1283 | ||
b5403ad7 ILT |
1284 | * xcofflink.c (xcoff_link_input_bfd): Adjust the TOC anchor value |
1285 | if it is not large enough to accomodate the entire TOC area with | |
1286 | signed 16 bit offsets. | |
1287 | (xcoff_write_global_symbol): Handle negative TOC offsets in global | |
1288 | linkage code. | |
1289 | (_bfd_ppc_xcoff_relocate_section): Adjust relocations against a | |
1290 | TOC anchor to use the TOC value used in the output file. | |
1291 | ||
90a7abbc ILT |
1292 | Sat Nov 18 18:01:41 1995 Ian Lance Taylor <[email protected]> |
1293 | ||
1294 | * coffgen.c (_bfd_coff_get_external_symbols): Cast malloc return. | |
1295 | (_bfd_coff_read_string_table): Likewise. | |
1296 | ||
177b1932 DE |
1297 | Sat Nov 18 19:43:04 1995 Richard Earnshaw ([email protected]) |
1298 | ||
1299 | * pe-arm.c: Fix typos. | |
1300 | * coff-arm.c: Likewise. | |
1301 | ||
1302 | Fri Nov 17 16:22:04 1995 Kim Knuttila <[email protected]> | |
1303 | ||
1304 | * coff-ppc.c (list_ele): Added "cat"egory member. | |
1305 | (record_toc): New category parameter (priv or pub). | |
1306 | (ppc_record_toc_entry): Check to see if toc bounds exceeded. | |
1307 | (ppc_process_before_allocation): Removed embrionic data-in-toc from | |
1308 | the mainline. It addes extra toc cells in error. | |
1309 | (ppc_coff_swap_sym_in_hook): Added some documentation. | |
1310 | (dump_toc): Can now diagnose "virtual toc" chicanery. | |
1311 | ||
e34314c4 ILT |
1312 | Fri Nov 17 10:41:25 1995 Philippe De Muyter <[email protected]> |
1313 | ||
1314 | * elf-bfd.h (struct elf_link_hash_table): Change type of | |
1315 | dynsymcount and bucketcount fields from size_t to bfd_size_type. | |
1316 | ||
73a68447 ILT |
1317 | Fri Nov 17 10:02:58 1995 Ian Lance Taylor <[email protected]> |
1318 | ||
535e9e29 ILT |
1319 | * coffcode.h (coff_pointerize_aux_hook): I960 version: don't |
1320 | pointerize C_LEAFSTAT or C_LEAFEXT entries. | |
1321 | ||
73a68447 ILT |
1322 | * elflink.h (NAME(bfd_elf,size_dynamic_sections)): Only create |
1323 | DT_INIT and DT_FINI entries if the _init or _fini symbol is | |
1324 | defined or mentioned in a regular file. | |
1325 | ||
cd2b2402 KK |
1326 | Thu Nov 16 15:16:42 1995 Kim Knuttila <[email protected]> |
1327 | ||
1328 | * coff-ppc.c (ppc_record_data_in_toc_entry): new function | |
1329 | (coff_ppc_relocate_section): Handle TOCDEFN attribute | |
1330 | (coff_ppc_relocate_section): Correct REL24 handling | |
1331 | (ppc_process_before_allocation): Correct TOCDEFN handling | |
1332 | ||
1333 | * peicode.h (dir_names): Added name descriptions | |
1334 | ||
b218076e KR |
1335 | Thu Nov 16 03:38:03 1995 Ken Raeburn <[email protected]> |
1336 | ||
1337 | * VERSION: Updated to cygnus-2.6. | |
1338 | ||
1339 | Wed Nov 15 19:30:07 1995 Ken Raeburn <[email protected]> | |
1340 | ||
1341 | * targets.c (m68k4knetbsd_vec): Declare. | |
1342 | ||
e9f30616 ILT |
1343 | Wed Nov 15 18:05:52 1995 Ian Lance Taylor <[email protected]> |
1344 | ||
1345 | * targets.c (bfd_target): Change type of second argument to | |
1346 | _bfd_print_private_bfd_data from void * to PTR. | |
1347 | * libbfd-in.h (_bfd_generic_bfd_print_private_bfd_data): Cast | |
1348 | using PTR rather than void *. | |
1349 | * bfd-in2, libbfd.h: Rebuild. | |
1350 | * peicode.h (pe_print_private_bfd_data): Change vfile from void * | |
1351 | to PTR. | |
1352 | * elfxx-target.h (bfd_elfNN_bfd_print_private_bfd_data): Define as | |
1353 | _bfd_generic_bfd_print_private_bfd_data rather than casting | |
1354 | bfd_true. | |
1355 | ||
ae75c4a4 KR |
1356 | Wed Nov 15 04:09:14 1995 Ken Raeburn <[email protected]> |
1357 | ||
1358 | * Makefile.in (.dep1): Fix stupid typo in last change. Remove any | |
1359 | "DO NOT DELETE" lines or blank lines that mkdep writes on some | |
1360 | systems. | |
1361 | (BFD_LIBS_CFILES, ALL_MACHINES_CFILES, BFD32_BACKENDS_CFILES, | |
1362 | BFD64_BACKENDS_CFILES): New variables. | |
1363 | (CFILES): Use them. | |
1364 | ||
bebcd3db ILT |
1365 | Tue Nov 14 11:52:23 1995 Ian Lance Taylor <[email protected]> |
1366 | ||
4b71e164 ILT |
1367 | * peicode.h (coff_swap_aouthdr_out): For PPC PE, start isize at 0, |
1368 | not at the file position of the first section. | |
1369 | * coffcode.h (coff_compute_section_file_positions): Avoid using | |
1370 | unportable #elif. | |
1371 | (coff_write_object_contents): When generating a PPC PE executable | |
1372 | with no symbols, round up the file size to a COFF_PAGE_SIZE | |
1373 | boundary. | |
1374 | * cofflink.c (_bfd_coff_final_link): If there are no symbols, | |
1375 | don't write out a string table. | |
1376 | ||
631b10f4 ILT |
1377 | * elf.c (bfd_section_from_shdr): When using a different section |
1378 | header, pass the new one to _bfd_elf_make_section_from_shdr. | |
1379 | (elf_fake_sections): Don't set sh_info and sh_entsize fields. | |
1380 | (elf_map_symbols): Add section VMA to symbol value when comparing | |
1381 | against 0. | |
1382 | (_bfd_elf_compute_section_file_positions): Only build symbol table | |
1383 | if there are some symbols. Set file offset of symtab and strtab | |
1384 | sections. | |
1385 | (assign_file_positions_except_relocs): Remove dosyms parameter. | |
1386 | Change all callers. Never set file offset of symtab and strtab | |
1387 | sections. | |
1388 | (_bfd_elf_copy_private_section_data): New function. | |
1389 | (MAP_ONESYMTAB, MAP_DYNSYMTAB, MAP_STRTAB, MAP_SHSTRTAB): Define. | |
1390 | (_bfd_elf_copy_private_symbol_data): New function. | |
1391 | (swap_out_syms): Check for special mapping of st_shndx created by | |
1392 | copy_private_symbol_data. | |
1393 | * elfxx-target.h: Use new copy routines. | |
1394 | * elf-bfd.h (_bfd_elf_copy_private_symbol_data): Declare. | |
1395 | (_bfd_elf_copy_private_section_data): Declare. | |
1396 | ||
1397 | * config.bfd (sh-*-*): Set targ_defvec to shcoff_vec. | |
1398 | ||
1399 | * coffcode.h (coff_slurp_symbol_table): If COFF_WITH_PE, handle | |
1400 | C_NT_WEAK. | |
1401 | ||
bebcd3db ILT |
1402 | * coff-sh.c (shlcoff_vec): Use _bfd_generic_archive_p, not |
1403 | _bfd_dummy_target, matching the recent change to archive | |
1404 | recognition. | |
1405 | ||
7ad4ba81 ILT |
1406 | Mon Nov 13 13:24:38 1995 Ian Lance Taylor <[email protected]> |
1407 | ||
afa67334 ILT |
1408 | * libbfd.c (bfd_get_file_window): Use casts to avoid doing |
1409 | arithmetic on PTR types. | |
1410 | ||
f2bd8915 ILT |
1411 | * aout-target.h (MY(callback)): Set the lma of the sections. |
1412 | ||
7ad4ba81 ILT |
1413 | * ecoff.c (ecoff_reloc_link_order): Turn a reloc against a defined |
1414 | symbol into a reloc against the section. | |
1415 | ||
93b6a3f8 KK |
1416 | Mon Nov 13 07:31:35 1995 Kim Knuttila <[email protected]> |
1417 | ||
1418 | * coff-ppc.c (ppc_coff_link_hash_entry): added support for inline | |
1419 | glue for the relocs: IMGLUE and IFGLUE. | |
1420 | (record_toc): new function - tracks toc contents | |
1421 | (ppc_mark_symbol_as_glue): new function - supports the IMGLUE reloc | |
1422 | (coff_ppc_relocate_section): Added support and fixes for IMGLUE/IFGLUE | |
1423 | (ppc_coff_rtype2howto): removed invalid IMGLUE hack | |
1424 | (coff_ppc_rtype_to_howto): removed invalid IMGLUE hack | |
125d37c4 | 1425 | (ppc_record_toc_entry): Removed a debug define (duh) |
93b6a3f8 KK |
1426 | |
1427 | * peicode.h (coff_swap_scnhdr_out): Fixed invalid strcmp for ".reldata" | |
1428 | (pe_print_idata): New function - formats the idata section data | |
1429 | (pe_print_pdata): New function - formats the pdata section data | |
1430 | (pe_print_private_bfd_data): calls to above | |
1431 | ||
c769947b SS |
1432 | Sun Nov 12 12:23:24 1995 Stan Shebs <[email protected]> |
1433 | ||
1434 | * Makefile.in (bfd_libs_here, etc): Provide empty definitions. | |
1435 | * coff-rs6000.c (rs6000coff_vec): Add conditional defines | |
1436 | TARGET_SYM and TARGET_NAME for vector and BFD name. | |
1437 | * coff-pmac.c (pmac_xcoff_vec): Remove. | |
1438 | (TARGET_SYM, TARGET_NAME): Define. | |
1439 | * coffcode.h (coff_set_arch_mach_hook) [POWERMAC]: Set the | |
1440 | machine to 0, not all PowerMacs are 601s. | |
1441 | ||
1442 | Fri Nov 10 12:10:14 1995 Ian Lance Taylor <[email protected]> | |
1443 | ||
1444 | * elfcode.h (elf_object_p): Read in any program headers. | |
1445 | * elf.c (_bfd_elf_make_section_from_shdr): Adjust section lma | |
1446 | based on the program headers, if any. | |
1447 | (elf_fake_sections): Set sh_addr from the vma, not the lma. | |
1448 | (map_program_segments): Set p_paddr of program headers based on | |
1449 | the lma. | |
1450 | ||
ee174815 ILT |
1451 | Thu Nov 9 13:01:31 1995 Ian Lance Taylor <[email protected]> |
1452 | ||
839087b7 ILT |
1453 | * archive.c (bfd_generic_archive_p): Preserve tdata in case of |
1454 | failure. | |
1455 | ||
922530a6 ILT |
1456 | * aoutx.h (NAME(aout,final_link)): Report a reasonable error when |
1457 | trying to do a relocateable link with a non-a.out object file. | |
1458 | ||
1459 | * archive.c (bfd_generic_archive_p): Check the first object file | |
1460 | in an archive even if target_defaulted is set. If the object file | |
1461 | has the wrong xvec, reject it. | |
1462 | ||
a1774c51 ILT |
1463 | * aoutx.h (NAME(aout,set_section_contents)): If a section can not |
1464 | be represented, report the name via _bfd_error_handler. | |
1465 | (translate_to_native_sym_flags): Likewise. | |
1466 | * elf32-mips.c (mips_elf_final_link): Likewise. | |
1467 | * oasys.c (oasys_write_sections): Likewise. | |
1468 | ||
4a378b13 ILT |
1469 | * coffcode.h (coff_set_alignment_hook): Write RS6000COFF_C version |
1470 | which checks for STYP_OVRFLO sections. | |
1471 | (coff_compute_section_file_positions): If RS6000COFF_C, handle | |
1472 | reloc and lineno count overflows. | |
1473 | (coff_write_object_contents): Call coff_count_linenumbers before | |
1474 | coff_compute_section_file_positions. If RS6000COFF_C, handle | |
1475 | reloc and lineno count overflows. | |
1476 | * xcofflink.c (_bfd_xcoff_bfd_final_link): Count line numbers and | |
1477 | relocs before dealing with .pad sections. Count overflow section | |
1478 | headers when handling .pad sections. | |
1479 | ||
7906bf87 ILT |
1480 | * coffcode.h (coff_write_object_contents): Set a.out vstamp to 1 |
1481 | if RS6000COFF_C. | |
1482 | ||
ee174815 ILT |
1483 | * xcofflink.c (XCOFF_DESCRIPTOR): Define. |
1484 | (struct xcoff_link_hash_table): Add descriptor_section and | |
1485 | special_sections fields. | |
1486 | (_bfd_xcoff_bfd_link_hash_table_create): Initialize new fields. | |
1487 | (xcoff_link_add_symbols): Set linkage section alignment. Create | |
1488 | descriptor section. Check for magic symbol names (_text, etc.), | |
1489 | and record them in special_sections if found. Set | |
1490 | XCOFF_DESCRIPTOR flag for a function descriptor, and set its | |
1491 | descriptor field to point back to the function code symbol. | |
1492 | (xcoff_sweep): Always mark the special descriptor_section. | |
1493 | (bfd_xcoff_export_symbol): Check whether the symbol might be a | |
1494 | function descriptor, and mark it if it is. | |
1495 | (bfd_xcoff_size_dynamic_sections): Add new special_sections | |
1496 | parameter, and fill it in. Allocate space for the descriptor | |
1497 | section. | |
1498 | (xcoff_build_ldsyms): Set XCOFF_DEF_REGULAR flag when defining | |
1499 | global linkage code. If an undefined function descriptor is | |
1500 | exported, arrange to define it. Warn about any other undefined | |
1501 | exported symbol. | |
1502 | (_bfd_xcoff_bfd_final_link): Write out the descriptor section. | |
1503 | (xcoff_write_global_symbol): Create a function descriptor when | |
1504 | necessary. | |
1505 | * bfd-in.h (bfd_xcoff_size_dynamic_sections): Update declaration. | |
1506 | * bfd-in2.h: Rebuild. | |
1507 | ||
0e829f18 KK |
1508 | Thu Nov 9 08:40:23 1995 Kim Knuttila <[email protected]> |
1509 | ||
1510 | * coff-ppc.c (ppc_coff_link_hash_entry): new types for hashing | |
1511 | (ppc_coff_link_hash_table): new types for hashing | |
1512 | (ppc_coff_link_hash_newfunc): hash entry constructor | |
1513 | (ppc_coff_link_hash_table_init): hash table initializer | |
1514 | (ppc_coff_link_hash_table_create): hash table constructor | |
1515 | (ppc_record_toc_entry): changed references to hash table | |
1516 | (coff_ppc_relocate_section): changed references to hash table | |
1517 | ||
1518 | * libcoff-in.h (coff_link_hash_entry): removed toc_offset | |
1519 | * libcoff.h: Rebuild | |
1520 | ||
1521 | * cofflink.c (_bfd_coff_link_hash_newfunc): removed toc_offset init | |
1522 | (coff_link_add_symbols): removed toc_offset init | |
1523 | ||
7ac84736 KR |
1524 | Thu Nov 9 04:00:38 1995 Ken Raeburn <[email protected]> |
1525 | ||
b27cc4bc KR |
1526 | * Makefile.in (.dep1): Make sure the file mkdep is to write exists |
1527 | first. | |
1528 | ||
7ac84736 KR |
1529 | * configure.in: Added new option --with[out]-mmap. Set USE_MMAP |
1530 | if it is given and mmep is available. | |
1531 | * acconfig.h: Undef USE_MMAP. | |
1532 | * configure, config.in: Regenerated. | |
1533 | * aoutx.h: If USE_MMAP is not defined, do all symbol and string | |
1534 | table handling the old way. | |
1535 | (aout_get_external_symbols): Don't complain if last byte of string | |
1536 | table is nonzero. | |
1537 | * libbfd.c [HAVE_MADVISE]: Include sys/types.h and sys/mman.h. | |
1538 | (bfd_free_window) [! USE_MMAP]: Don't define. | |
1539 | (bfd_get_file_window, | |
1540 | _bfd_generic_get_section_contents_in_window) [! USE_MMAP]: Abort. | |
1541 | ||
1b3b0c03 ILT |
1542 | Wed Nov 8 20:03:44 1995 Eric Freudenthal <[email protected]> |
1543 | ||
1544 | * coff-a29k.c (SIGN_EXTEND_HWORD): Use ~0xffff rather than | |
1545 | 0xffff0000. | |
1546 | ||
092abcdf ILT |
1547 | Wed Nov 8 11:31:11 1995 Ian Lance Taylor <[email protected]> |
1548 | ||
33698029 ILT |
1549 | * coff-a29k.c (a29k_reloc): Change handling of R_IREL reloc to be |
1550 | compatible with AMD generated COFF files. Try to support both AMD | |
1551 | and GNU formats simultaneously. | |
1552 | (coff_a29k_relocate_section): Likewise. | |
1553 | ||
0bb8ff19 ILT |
1554 | * libbfd.c (bfd_get_file_window): Change writable parameter from |
1555 | int to boolean; update all callers. Pass MAP_SHARED if not | |
1556 | writable--it's required on Solaris. Cast fprintf argument to | |
1557 | avoid warning. | |
1558 | * bfd-in.h (bfd_get_file_window): Update declaration. | |
1559 | * bfd-in2.h: Rebuild. | |
1560 | * aoutx.h: Update calls to bfd_get_file_window. | |
1561 | ||
0634a431 ILT |
1562 | * xcofflink.c (XCOFF_DEF_DYNAMIC): Rename from XCOFF_REF_DYNAMIC. |
1563 | Change all uses. | |
1564 | (xcoff_swap_ldhdr_in): New static function. | |
1565 | (xcoff_swap_ldsym_in): New static function. | |
7812bf9c | 1566 | (xcoff_find_reloc): Handle the case of a single reloc correctly. |
0634a431 ILT |
1567 | (xcoff_link_add_symbols): If we just created a descriptor, pass it |
1568 | to _bfd_generic_link_add_one_symbol, to save a hash lookup. | |
417acf22 | 1569 | Handle XTY_ER/XMC_XO symbols correctly. |
0634a431 ILT |
1570 | (xcoff_link_add_dynamic_symbols): Rewrite to read .loader symbols |
1571 | rather than normal symbol table. | |
417acf22 ILT |
1572 | (bfd_xcoff_import_symbol): It's not an error if the symbol is |
1573 | already defined with the same absolute value. | |
0634a431 ILT |
1574 | (xcoff_mark): When considering called symbols, check whether the |
1575 | descriptor is from a dynamic object, rather than the symbol | |
1576 | itself. | |
1577 | (xcoff_build_ldsyms): Likewise. | |
1578 | ||
092abcdf ILT |
1579 | * libbfd.c (bfd_get_file_window): Change return type to boolean. |
1580 | Cast realloc and malloc return values. If malloc or realloc fail, | |
1581 | set bfd_error_no_memory. | |
1582 | * bfd-in.h (bfd_get_file_window): Change type to boolean. | |
1583 | * bfd-in2.h: Rebuild. | |
1584 | ||
d6f41a7d KK |
1585 | Tue Nov 7 11:53:48 1995 Kim Knuttila <[email protected]> |
1586 | ||
1587 | * coff-ppc.c (ppc_record_toc_entry): new function. | |
1588 | (in_reloc_p): changed return value. | |
1589 | (coff_ppc_relocate_section): much rework. | |
1590 | (ppc_allocate_toc_section): new function. | |
1591 | (ppc_process_before_allocation): new function. | |
1592 | (ppc_coff_swap_sym_in_hook): new function. | |
1593 | ||
1594 | * cofflink.c (_bfd_coff_link_hash_newfunc): initialize toc_offset. | |
1595 | (coff_link_add_symbols): initialize toc_offset. | |
1596 | ||
1597 | * peicode.h (coff_swap_sym_in): Added coff_swap_sym_in_hook | |
1598 | (coff_swap_aouthdr_out): Added more sections to the data | |
1599 | dictionary for the pe file header. Also changed linker version | |
1600 | number on the ppc side. | |
1601 | (dir_names): small improvements to the dictionary printing. | |
1602 | (pe_mkobject_hook): save the file level flags. | |
1603 | ||
1604 | * libcoff-in.h (coff_link_hash_entry): added toc_offset field | |
1605 | (pe_tdata): added real_flags field | |
1606 | (coff_tdata): added local_toc_sym_map and access macro | |
1607 | ||
1608 | * libcoff.h (coff_link_hash_entry): added toc_offset field | |
1609 | (pe_tdata): added real_flags field | |
1610 | (coff_tdata): added local_toc_sym_map and access macro | |
1611 | ||
1612 | * coffcode.h (coff_set_alignment_hook): added hook for PE. | |
1613 | (coff_mkobject): init for local_toc_sym_map | |
1614 | (coff_write_object_contents): set the internal_a.magic to | |
1615 | IMAGE_NT_OPTIONAL_HDR_MAGIC which appears to be what other | |
1616 | ppc compilers use. | |
1617 | ||
6bc200f2 ILT |
1618 | Tue Nov 7 13:48:58 1995 Ian Lance Taylor <[email protected]> |
1619 | ||
c0971298 ILT |
1620 | * ecofflink.c (_bfd_ecoff_locate_line): Keep looking through stabs |
1621 | entries until both the line number address and the function name | |
1622 | address are too large. | |
1623 | ||
6a468850 ILT |
1624 | * configure.in: Call AC_CHECK_PROG to find and cache AR. |
1625 | * configure: Rebuilt. | |
1626 | ||
6bc200f2 ILT |
1627 | * aclocal.m4 (BFD_CC_FOR_BUILD): Don't define CC_FOR_BUILD if it |
1628 | is defined in the environment. | |
1629 | ||
c44bf94c JL |
1630 | Tue Nov 7 10:57:24 1995 Jeffrey A Law ([email protected]) |
1631 | ||
1632 | * som.c (som_get_section_contents_in_window): Define to use | |
1633 | generic version. | |
1634 | ||
cf587de8 ILT |
1635 | Mon Nov 6 17:13:15 1995 Harry Dolan <[email protected]> |
1636 | ||
1637 | * coff-i860.c: New file, based on coff-i386.c. | |
1638 | * cpu-i860.c: New file, based on cpu-i386.c. | |
1639 | * hosts/i860mach3.h: New file, based on hosts/i386mach3.h. | |
1640 | * config.bfd (i860-*-mach3*, i860-*-osf1*, i860-*-coff*): New | |
1641 | targets, using i860coff_vec. | |
1642 | * configure.in (i860-*-mach3*, i860-*-osf1*): New hosts, using | |
1643 | trad-core.o and hosts/i860mach3.h. | |
1644 | (i860coff_vec): Use coff-i860.o and cofflink.o. | |
1645 | * configure: Rebuild. | |
1646 | * Makefile.in: Rebuild dependencies. | |
1647 | (ALL_MACHINES): Add cpu-i860.o. | |
1648 | (BFD32_BACKENDS): Add coff-i860.o. | |
1649 | (CFILES): Add cpu-i860.c and coff-i860.c. | |
1650 | * targets.c (i860coff_vec): Declare. | |
1651 | (bfd_target_vector): Add &i860coff_vec. | |
1652 | * archures.c (bfd_i860_arch): Declare. | |
1653 | (bfd_archures_list): Add &bfd_i860_arch. | |
1654 | * coffcode.h (coff_set_arch_mach_hook): Handle I860 magic number. | |
1655 | (coff_set_flags): Handle bfd_arch_i860. | |
1656 | (coff_write_object_contents): Handle I860 a.out magic number. | |
1657 | ||
83c23fca ILT |
1658 | Mon Nov 6 14:34:07 1995 Ian Lance Taylor <[email protected]> |
1659 | ||
1660 | * xcofflink.c (xcoff_link_add_symbols): Set the alignment power of | |
1661 | the created .tc section to 2. | |
1662 | (xcoff_mark): Don't keep a .loader reloc for a call to an | |
1663 | undefined symbol when creating a shared library. | |
1664 | (xcoff_build_ldsyms): When creating a shared library, generate | |
1665 | global linkage code for a call to an undefined symbol. | |
1666 | ||
5d9eb9c3 KR |
1667 | Sun Nov 5 21:44:13 1995 Ken Raeburn <[email protected]> |
1668 | ||
1669 | * Makefile.in (CFILES): Rebuild list from BFD_LIBS, ALL_MACHINES, | |
1670 | BFD32_BACKENDS, BFD64_BACKENDS. | |
1671 | (.dep1): Put mkdep output in a separate file. | |
1672 | Rebuilt dependencies. | |
1673 | ||
ffacb892 KR |
1674 | * ecoff.c (_bfd_ecoff_slurp_armap): Cast _bfd_read_ar_hdr return |
1675 | value. | |
1676 | ||
4fe6d901 KR |
1677 | Permit use of mmap when available: |
1678 | ||
1679 | * configure.in: Check for mmap, madvise, mprotect. | |
1680 | * config.in, configure: Regenerated. | |
1681 | ||
1682 | * libbfd.c (struct _bfd_window_internal): Define type. | |
1683 | (bfd_init_window, bfd_free_window, bfd_get_file_window): New | |
1684 | functions. | |
1685 | (ok_to_map): New static variable for debugging. | |
1686 | (_bfd_generic_get_section_contents_in_window): New function. | |
1687 | * bfd-in.h (bfd_window_internal): Declare type. | |
1688 | (bfd_window): Define type. | |
1689 | (bfd_init_window, bfd_free_window, bfd_get_file_window): Declare. | |
1690 | * libbfd-in.h (_bfd_generic_get_section_contents_in_window): | |
1691 | Declare. | |
1692 | ||
1693 | * libaout.h (struct aoutdata): Add two window fields. | |
1694 | (obj_aout_sym_window, obj_aout_string_window): New macros. | |
1695 | * aoutx.h (some_aout_object_p): Initialize windows. | |
1696 | (aout_get_external_symbols): Get symbol data and strings in | |
1697 | windows instead of explicitly allocated buffers. | |
1698 | (slurp_symbol_table): Free window instead of memory. | |
1699 | (bfd_free_cached_info): Release windows instead of freeing storage | |
1700 | directly. | |
1701 | (aout_link_free_symbols): Ditto. | |
1702 | ||
1703 | * targets.c (bfd_target): Add new field for | |
1704 | get_section_contents_in_window. | |
1705 | (BFD_JUMP_TABLE_GENERIC): Updated. | |
1706 | * aout-adobe.c, aout-target.h, binary.c, bout.c, coff-alpha.c, | |
1707 | coff-mips.c, elfxx-target.h, i386msdos.c, i386os9k.c, ieee.c, | |
1708 | libcoff-in.h, oasys.c, srec.c, tekhex.c, versados.c: Added new | |
1709 | macros for get_section_contents_in_window field. | |
1710 | ||
d9e771e3 FF |
1711 | Sat Nov 4 12:23:26 1995 Fred Fish <[email protected]> |
1712 | ||
1713 | * core.c: Renamed to corefile.c | |
1714 | * makefile.dos (OBJS): Change core.o to corefile.o | |
1715 | * Makefile.in (CFILES, BFD_LIBS): Use corefile.c instead of core.c | |
1716 | ||
bf917766 SG |
1717 | start-sanitize-gm |
1718 | Sat Nov 4 10:16:54 1995 Stu Grossman ([email protected]) | |
1719 | ||
1720 | * config.bfd (mips*-*-magic*): Add bfd_elf32_bigmips_vec to | |
1721 | targ_selvecs to allow debugging under Irix-5 native. | |
1722 | ||
1723 | end-sanitize-gm | |
583db7a8 ILT |
1724 | Fri Nov 3 15:54:59 1995 Ian Lance Taylor <[email protected]> |
1725 | ||
1726 | * xcofflink.c (xcoff_link_add_symbols): Rename local variable sub | |
1727 | to o. Clobber and restore the list of new csects around the call | |
1728 | to _bfd_generic_link_add_one_symbol, in case it wants to report a | |
1729 | linker error and the linker wants to read the symbol table. Reset | |
1730 | the line number count of a real section even if it has no relocs. | |
1731 | (_bfd_xcoff_bfd_final_link): If shared, set the DYNAMIC flag. | |
1732 | ||
1733 | * coffgen.c (_bfd_coff_read_string_table): Warn if the string size | |
1734 | is too small. | |
1735 | ||
68aed7db ILT |
1736 | Thu Nov 2 23:16:39 1995 Ian Lance Taylor <[email protected]> |
1737 | ||
18a9609c ILT |
1738 | * xcofflink.c (_bfd_ppc_xcoff_relocate_section): Don't warn about |
1739 | an undefined symbol in a shared link. | |
1740 | ||
68aed7db ILT |
1741 | * linker.c (_bfd_generic_link_add_one_symbol): Correct type of |
1742 | oldtype from bfd_link_order_type to bfd_link_hash_type. From | |
1743 | [email protected] (Philippe De Muyter). | |
1744 | ||
7f82c7e1 ILT |
1745 | Wed Nov 1 14:26:02 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <[email protected]> |
1746 | ||
1747 | * coff-m88k.c (rtype2howto): New static function. | |
1748 | (RTYPE2HOWTO): Use it rather than a macro definition. | |
1749 | ||
1750 | * coffcode.h (coff_write_object_contents): set internal_a.magic | |
1751 | to PAGEMAGICPEXECPAGED #if defined (M68) && !defined (LYNXOS). | |
1752 | ||
4c8b9746 | 1753 | * configure.in: m68*-motorola-sysv* does not use ptrace-core.o; |
7f82c7e1 ILT |
1754 | define TRAD_HEADER to new file hosts/delta68.h. |
1755 | m88*-motorola-sysv*, however, does use ptrace-core.o. | |
1756 | * hosts/delta68.h: New file. | |
1757 | ||
1758 | * ptrace-core.c (ptrace_unix_core_file_p): change bfd_zmalloc to | |
1759 | bfd_zalloc; provide proper parm abfd to calls to bfd_zalloc. | |
1760 | ||
619c7730 KR |
1761 | Wed Nov 1 13:51:54 1995 Ken Raeburn <[email protected]> |
1762 | ||
1763 | * i386linux.c (MY(vec)): Declare before use. | |
1764 | ||
73246ff8 ILT |
1765 | Wed Nov 1 11:45:07 1995 Ian Lance Taylor <[email protected]> |
1766 | ||
e8d6d5d0 ILT |
1767 | * reloc16.c (bfd_coff_reloc16_get_relocated_section_contents): |
1768 | Pass input_bfd, not in_bfd, to bfd_coff_reloc16_extra_cases. | |
1769 | ||
b2193cc5 ILT |
1770 | * elf.c (bfd_elf_set_dt_needed_name): Don't do anything if the |
1771 | BFD is not of the right type. | |
1772 | (bfd_elf_get_needed_list): Likewise. | |
1773 | * i386linux.c (bfd_linux_size_dynamic_sections): Likewise. | |
1774 | * sunos.c (bfd_sunos_get_needed_list): Likewise. | |
1775 | * xcofflink.c (XCOFF_XVECP): Define. | |
1776 | (bfd_xcoff_link_record_set): Don't do anything if the BFD is not | |
1777 | of the right type. | |
1778 | (bfd_xcoff_import_symbol): Likewise. | |
1779 | (bfd_xcoff_export_symbol): Likewise. | |
1780 | (bfd_xcoff_link_count_reloc): Likewise. | |
1781 | (bfd_xcoff_record_link_assignment): Likewise. | |
1782 | (bfd_xcoff_size_dynamic_sections): Likewise. | |
1783 | ||
baabeb74 ILT |
1784 | * sunos.c (sunos_scan_ext_relocs): Only check the reloc symbol |
1785 | table index against the number of symbols for a base relative | |
1786 | reloc. | |
1787 | ||
73246ff8 ILT |
1788 | * coff-rs6000.c (_bfd_xcoff_sizeof_headers): Change from macro to |
1789 | static function. | |
1790 | * xcofflink.c (_bfd_xcoff_bfd_link_hash_table_create): Set | |
1791 | full_aouthdr flag here... | |
1792 | (_bfd_xcoff_bfd_final_link): ...not here. | |
1793 | ||
6ab826bd FF |
1794 | Tue Oct 31 12:52:02 1995 Fred Fish <[email protected]> |
1795 | ||
1796 | * libelf.h: Rename to elf-bfd.h to avoid conflict with | |
1797 | systems that have a system <libelf.h>. | |
1798 | * Makefile.in: Globally replace libelf.h with elf-bfd.h. | |
1799 | * bfd.c, elf.c, elf32-arc.c, elf32-gen.c, elf32-hppa.c, | |
1800 | elf32-hppa.h, elf32-i386.c, elf32-i860.c, elf32-m68k.c, | |
1801 | elf32-m88k.c, elf32-mips.c, elf32-ppc.c, elf32-sparc.c, | |
1802 | elf64-gen.c, elf64-sparc.c, elfcode.h, elflink.c, | |
1803 | elfxx-target.h: Include elf-bfd.h rather than libelf.h. | |
1804 | * elfxx-target.h: Change libelf.h reference to elf-bfd.h. | |
1805 | ||
999cc186 ILT |
1806 | Tue Oct 31 15:30:07 1995 David Mosberger-Tang <[email protected]> |
1807 | ||
0652d579 ILT |
1808 | * ecoff.c (ecoff_set_symbol_info): Add new parameter weak. If |
1809 | set, set BSF_WEAK in symbol. Change all callers. | |
1810 | (ecoff_get_extr): Set weakext based on BSF_WEAK. | |
1811 | (ecoff_link_add_externals): If weakext is set, pass BSF_WEAK to | |
1812 | _bfd_generic_link_add_one_symbol. | |
1813 | (ecoff_indirect_link_order): Check that the section tdata relocs | |
1814 | are not NULL before using them. | |
1815 | ||
999cc186 ILT |
1816 | * configure.in (alpha*-*-linux*): Set COREFILE to trad-core.o and |
1817 | define TRAD_HEADER as hosts/alphalinux.h. | |
1818 | * configure: Rebuild. | |
1819 | * hosts/alphalinux.h: New file. | |
1820 | * trad-core.c (trad_unix_core_file_p): Cast u.u_ar0 to bfd_vma, | |
1821 | not int. | |
1822 | ||
e6080520 ILT |
1823 | Tue Oct 31 12:34:11 1995 Ian Lance Taylor <[email protected]> |
1824 | ||
2bd0aeb9 ILT |
1825 | * coffcode.h (coff_slurp_symbol_table): Accept C_BCOMM and |
1826 | C_ECOMM storage classes. | |
1827 | ||
e6080520 ILT |
1828 | * xcofflink.c (xcoff_mark_symbol): New static function, broken out |
1829 | of xcoff_mark. | |
1830 | (xcoff_mark): Call xcoff_mark_symbol. | |
1831 | (bfd_xcoff_export_symbol): Call xcoff_mark_symbol. | |
1832 | (bfd_xcoff_link_count_reloc): Call xcoff_mark_symbol rather than | |
1833 | doing it by hand. | |
1834 | (xcoff_build_ldsyms): Build a .loader symbol for an export symbol. | |
1835 | ||
5fe14a9f ILT |
1836 | Mon Oct 30 14:53:48 1995 Ian Lance Taylor <[email protected]> |
1837 | ||
f630a0a4 ILT |
1838 | * xcofflink.c (struct xcoff_final_link_info): Add new line_filepos |
1839 | field. | |
1840 | (xcoff_find_reloc): New static function. | |
1841 | (xcoff_link_add_symbols): Use it. | |
1842 | (_bfd_xcoff_bfd_final_link): Set finfo.line_filepos. | |
1843 | (xcoff_link_input_bfd): Handle C_BINCL and C_EINCL. Don't | |
1844 | relocate the value of C_DECL. | |
1845 | ||
5fe14a9f ILT |
1846 | * elf.c (elf_fake_sections): Remove bogus BFD_ASSERT. |
1847 | ||
dff77ed7 SC |
1848 | Sat Oct 28 01:25:34 1995 steve chamberlain <[email protected]> |
1849 | ||
1850 | * cofflink.c (_bfd_coff_generic_relocate_section): Make | |
1851 | callback decide what goes in .relocs. | |
1852 | * pe[i]-i386.c (TARGET_UNDERSCORE): Define. | |
1853 | * peicode.h (pe_mkobject_hook): Only copy aouthdr if | |
1854 | there is one. | |
1855 | ||
697a8fe8 ILT |
1856 | Sat Oct 28 01:51:02 1995 Ian Lance Taylor <[email protected]> |
1857 | ||
1858 | * xcofflink.c (xcoff_link_add_symbols): Handle csects in the | |
1859 | absolute section. | |
1860 | ||
2d7de17d ILT |
1861 | Fri Oct 27 18:14:39 1995 Ian Lance Taylor <[email protected]> |
1862 | ||
1863 | * xcofflink.c: More improvements, mostly to fix handling of | |
1864 | constructors and a few other special cases. | |
1865 | * coff-rs6000.c (rs6000coff_vec): Set symbol_leading_char back to | |
1866 | zero, reverting yesterday's change. | |
1867 | * bfd-in.h (bfd_xcoff_link_record_set): Declare. | |
1868 | (bfd_xcoff_link_count_reloc): Declare. | |
1869 | (bfd_xcoff_record_link_assignment): Declare. | |
1870 | * bfd-in2.h: Rebuild. | |
1871 | ||
f552f751 NH |
1872 | Fri Oct 27 14:42:15 1995 Niklas Hallqvist <[email protected]> |
1873 | ||
1874 | * PORTING, aout-arm.c, aout-encap.c, aout-rce.c, aout-target.h, | |
1875 | aoutx.h, gen-aout.c, host-aout.c, hp300bsd.c, i386aout.c | |
1876 | i386bsd.c, i386dynix.c, i386linux.c, i386lynx.c, i386mach3.c, | |
1877 | i386netbsd.c, m68klynx.c, m88kmach3.c, mipsbsd.c, newsos3.c, | |
1878 | ns32knetbsd.c, pc532-mach.c, riscix.c, sparclynx.c, sparcnetbsd.c: | |
1879 | Change PAGE_SIZE to TARGET_PAGE_SIZE. | |
1880 | ||
1881 | * m68knetbsd.c: Ditto as well as add support for the m68k4k object | |
1882 | format. | |
1883 | ||
1884 | * netbsd.h: Double ditto (incl. m68k4k support). NetBSD's text | |
1885 | segments includes the a.out header. See to that the magic number | |
1886 | *always* is big-endian. | |
1887 | ||
1888 | * config.bfd: Add m68*-hp*-netbsd* case. Cross-pollinate m68k and | |
1889 | m68k4k NetBSD configurations. | |
1890 | ||
1891 | * configure.in, configure: Separate i386 & mips NetBSD | |
1892 | configurations from other BSD ones. Don't assume DEC is the only | |
1893 | thing NetBSD/mips run on. Add {m68k,ns32k,sparc}-*-netbsd* | |
1894 | configurations. Add support for m68k4k NetBSD object format. | |
1895 | ||
1896 | * libaout.h: Added M_68K4K_NETBSD magic. | |
6fd1f40d NH |
1897 | |
1898 | * m68k4knetbsd.c: New file. | |
f552f751 NH |
1899 | |
1900 | * hosts/{m68k,sparc}nbsd.h: Don't define HOST_BIG_ENDIAN_P. | |
1901 | ||
1902 | * hosts/nbsd.h: Define HOST_BIG_ENDIAN_P according to | |
1903 | <machine/endian.h>. | |
1904 | ||
6fd1f40d NH |
1905 | * hosts/mipsnbsd.h: New file. |
1906 | ||
d6d44ef9 SG |
1907 | start-sanitize-gm |
1908 | Fri Oct 27 09:41:51 1995 Stu Grossman ([email protected]) | |
1909 | ||
1910 | * config.bfd: Add config stuff for mips*-*-magic* to set | |
1911 | targ_defvec to ecoff_big_vec. | |
1912 | ||
1913 | end-sanitize-gm | |
867d923d ILT |
1914 | Thu Oct 26 14:16:47 1995 Ian Lance Taylor <[email protected]> |
1915 | ||
1916 | * xcofflink.c: Numerous changes to get closer to a working XCOFF | |
1917 | linker. | |
1918 | * libcoff-in.h (struct xcoff_tdata): Add full_aouthdr, | |
1919 | toc_section, and entry_section fields. | |
1920 | (struct xcoff_section_tdata): Remove ldrel_count field. | |
1921 | * libcoff.h: Rebuild. | |
1922 | * coffcode.h (coff_mkobject_hook): Initialize new xcoff_data | |
1923 | fields. | |
1924 | (coff_compute_section_file_positions): If RS6000COFF_C, generate | |
1925 | full a.out header if full_aouthdr is set in xcoff_data. | |
1926 | (coff_write_object_contents): Likewise. Set o_snentry and o_sntoc | |
1927 | based on sections stored in xcoff_data. | |
1928 | * coff-rs6000.c (xcoff_copy_private_bfd_data): Copy new xcoff_data | |
1929 | fields. | |
aad2c618 ILT |
1930 | (xcoff_reloc_type_lookup): Handle BFD_RELOC_CTOR. |
1931 | (rs6000coff_vec): Set symbol_leading_char to '.'. | |
867d923d ILT |
1932 | * coffgen.c (coff_get_symbol_info): If fix_value is set, fix the |
1933 | value stored in ret rather than returning a pointer value. | |
1934 | ||
6bd9ffdb MM |
1935 | Wed Oct 25 23:10:39 1995 Michael Meissner <[email protected]> |
1936 | ||
1937 | * config.bfd (powerpc{,le}-{elf,sysv4,eabi,solaris2}): Remove MAC | |
1938 | format for now. | |
1939 | ||
9d14250f JL |
1940 | Wed Oct 25 16:19:27 1995 Jeffrey A Law ([email protected]) |
1941 | ||
1942 | * som.c (som_slurp_string_table): Allocate the strings with malloc | |
1943 | since they're free'd by free_cached_info. | |
1944 | (som_slurp_symbol_table): Similarly for the symbol table. | |
1945 | ||
a2bd0529 PB |
1946 | Wed Oct 25 14:59:22 1995 Per Bothner <[email protected]> |
1947 | ||
1948 | * Makefile.in (diststuff): Don't make headers. | |
1949 | ||
28a0c103 ILT |
1950 | Wed Oct 25 11:32:54 1995 Ian Lance Taylor <[email protected]> |
1951 | ||
356cd465 ILT |
1952 | * Makefile.in: Rebuild dependencies. |
1953 | ||
1edd3a7b ILT |
1954 | * sunos.c (bfd_sunos_record_link_assignment): Don't do anything if |
1955 | output_bfd is not SunOS. | |
1956 | (bfd_sunos_size_dynamic_sections): Likewise. Don't scan relocs of | |
1957 | non-SunOS input files. | |
1958 | ||
28a0c103 ILT |
1959 | * xcofflink.c: Extensive changes to support linking shared objects |
1960 | and generating a .loader section. | |
1961 | * libcoff-in.h (struct xcoff_tdata): Add import_file_id field. | |
b73322d9 ILT |
1962 | (struct xcoff_section_tdata): Add lineno_count, first_symndx, |
1963 | last_symndx, and ldrel_count fields. | |
28a0c103 ILT |
1964 | * libcoff.h: Rebuild. |
1965 | * coff-rs6000.c (xcoff_howto_table): Correct reloc names. | |
1966 | * coffcode.h (styp_to_sec_flags): Don't set any flags if STYP_PAD | |
1967 | is set. | |
1968 | * bfd-in.h (bfd_xcoff_import_symbol): Declare. | |
1969 | (bfd_xcoff_export_symbol): Declare. | |
1970 | (bfd_xcoff_size_dynamic_sections): Declare. | |
1971 | * bfd-in2.h: Rebuild. | |
1972 | ||
aadf04f7 SS |
1973 | Tue Oct 24 17:44:20 1995 Stan Shebs <[email protected]> |
1974 | ||
1975 | * configure.in: Add xcofflink.o to pmac_xcoff_vec. | |
1976 | * configure: Rebuild. | |
1977 | * mpw-config.in: Add xcofflink.c.o to powerpc-apple-macos. | |
1978 | * coff-pmac.c: Include coff-rs6000.c instead of duplicating its | |
1979 | contents. | |
1980 | (pmac_xcoff_vec): Update to use new xcoff support. | |
1981 | * coff-rs6000.c (xcoff_generic_stat_arch_elt): Make static. | |
1982 | (xcoff_write_armap): Declare buf as unsigned char. | |
1983 | * xcofflink.c (xcoff_link_add_symbols): Declare a local as PTR. | |
1984 | ||
1985 | * mpw-make.sed: Generalize subdir_do edit. | |
1986 | ||
ddf4639b JL |
1987 | Tue Oct 24 10:25:01 1995 Jeffrey A Law ([email protected]) |
1988 | ||
1989 | * hppabsd-core.c (make_bfd_asection): Initialize asect->filepos | |
1990 | correctly. Don't initialize asect->vma. | |
1991 | ||
e7bedf65 KR |
1992 | Fri Oct 20 13:23:48 1995 Ken Raeburn <[email protected]> |
1993 | ||
1994 | * opncls.c (_bfd_new_bfd): If _bfd_chunksize wasn't preset, use | |
1995 | something a little less than the page size. | |
1996 | ||
1997 | Thu Oct 19 13:06:09 1995 Ian Lance Taylor <[email protected]> | |
1998 | ||
1999 | * coff-i960.c (coff_i960_adjust_symndx): Clear *adjustedp. | |
2000 | ||
3a70e298 SC |
2001 | Wed Oct 18 16:20:08 1995 steve chamberlain <[email protected]> |
2002 | ||
2003 | * coff-i386.c (coff_i386_reloc_type_lookup): New. | |
2004 | * coffcode.h (coff_write_object_contents): If .bss is before | |
2005 | .data us that as data_start. | |
2006 | * cofflink.c (_bfd_coff_generic_relocate_section): Get reloc | |
2007 | calc correct. | |
2008 | * peicode.h (add_data_entry): Use _cooked_size of data directory. | |
2009 | (coff_swap_outhdr_out): Hardwire in version number. | |
2010 | ||
5a2846e3 KR |
2011 | Wed Oct 18 16:50:54 1995 Ken Raeburn <[email protected]> |
2012 | ||
3c3a5268 KR |
2013 | * sunos.c (sunos_add_dynamic_symbols): Rename local variables |
2014 | major and minor to *_vno, since the former are also macros in | |
2015 | SunOS header files. Cast result of bfd_alloc to appropriate | |
2016 | type. | |
2017 | ||
5a2846e3 KR |
2018 | * coffgen.c (coff_find_nearest_line): Cast used_by_bfd value |
2019 | before assigning to sec_data. | |
2020 | ||
0f6c885e ILT |
2021 | Wed Oct 18 13:25:17 1995 Ian Lance Taylor <[email protected]> |
2022 | ||
2023 | * ecoff.c (_bfd_ecoff_find_nearest_line): The offset argument is | |
2024 | now relative to the section, not absolute. | |
2025 | * ecofflink.c (_bfd_ecoff_locate_line): Use the right symbol to | |
2026 | get the file name when there is a N_SO directory name. When | |
2027 | handling stabs, remember that section->vma was added to the | |
2028 | offset. | |
2029 | ||
11fa6636 ILT |
2030 | Tue Oct 17 18:24:54 1995 Ian Lance Taylor <[email protected]> |
2031 | ||
2032 | * sunos.c (struct sunos_link_hash_table): Add needed field. | |
2033 | (sunos_link_hash_table_create): Call bfd_release, not free. | |
2034 | (sunos_link_hash_table_create): Initialize needed field. | |
2035 | (sunos_add_dynamic_symbols): Record needed objects. | |
2036 | (bfd_sunos_get_needed_list): New function. | |
2037 | * bfd-in.h (bfd_sunos_get_needed_list): Declare. | |
2038 | * bfd-in2.h: Rebuild. | |
2039 | ||
c974e19e SC |
2040 | Mon Oct 16 14:43:59 1995 steve chamberlain <[email protected]> |
2041 | ||
2042 | * libcoff-in.h (pe_data_type.in_reloc_p): New. | |
2043 | ||
22a35f0b ILT |
2044 | Mon Oct 16 10:52:50 1995 Ian Lance Taylor <[email protected]> |
2045 | ||
54406786 ILT |
2046 | * bfd-in.h (struct bfd_link_needed_list): Rename from |
2047 | bfd_elf_link_needed_list. | |
2048 | * bfd-in2.h: Rebuild. | |
2049 | * elf.c, elflink.h, libelf.h: Corresponding changes. | |
2050 | ||
dd984644 ILT |
2051 | Add start at AIX linker support; no shared libraries yet. |
2052 | * xcofflink.c: New file. | |
2053 | * configure.in (rs600coff_vec): Use xcofflink.o. | |
2054 | * configure: Rebuild. | |
2055 | * libcoff-in.h (struct xcoff_tdata): Add csects and debug_indices | |
2056 | fields. | |
2057 | (struct xcoff_section_tdata): Define. | |
2058 | (xcoff_section_data): Define macro. | |
2059 | (_bfd_xcoff_bfd_link_hash_table_create): Declare. | |
2060 | (_bfd_xcoff_bfd_link_add_symbols): Declare. | |
2061 | (_bfd_xcoff_bfd_final_link): Declare. | |
2062 | (_bfd_ppc_xcoff_relocate_section): Declare. | |
2063 | * libcoff.h: Rebuild. | |
2064 | * coff-rs6000.c: Clean up a bit. | |
2065 | (xcoff_mkobject): Default modtype to 1L, not RE. Initialize | |
2066 | cputype, csects, and debug_indices. | |
2067 | (xcoff_copy_private_bfd_data): Copy cputype. | |
2068 | (xcoff_howto_table): Rename from rs6000coff_howto_table. | |
2069 | (xcoff_rtype2howto): Rename from rs6000coff_rtype2howto. | |
2070 | (xcoff_reloc_type_lookup): Rename from | |
2071 | rs6000coff_reloc_type_lookup. | |
2072 | (coff_relocate_section): Define. | |
2073 | (_bfd_xcoff_sizeof_headers): Define. | |
2074 | (_bfd_xcoff_bfd_get_relocated_section_contents): Define. | |
2075 | (_bfd_xcoff_bfd_relax_section): Define. | |
2076 | (_bfd_xcoff_bfd_link_split_section): Define. | |
2077 | (rs6000coff_vec): For BFD_JUMP_TABLE_LINK, use _bfd_xcoff, not | |
2078 | coff. | |
2079 | * coffcode.h (coff_compute_section_file_positions): If AIX, | |
2080 | increment sofar by SMALL_AOUTSZ if not executable. | |
2081 | (coff_write_object_contents): If AIX, always output an a.out | |
2082 | header; if not executable, header size of SMALL_AOUTSZ. | |
2083 | * hash.c (struct bfd_strtab_hash): Add xcoff field. | |
2084 | (_bfd_stringtab_init): Initialize xcoff field. | |
2085 | (_bfd_xcoff_stringtab_init): New function. | |
2086 | (_bfd_stringtab_add): In XCOFF mode, leave two bytes for length. | |
2087 | (_bfd_stringtab_emit): In XCOFF mode, write out length. | |
2088 | * libbfd-in.h (_bfd_xcoff_stringtab_init): Declare. | |
2089 | * libbfd.h: Rebuild. | |
2090 | * Makefile.in: Rebuild dependencies. | |
2091 | (BFD32_BACKENDS): Add xcofflink.o. | |
2092 | (CFILES): Add xcofflink.c. | |
2093 | ||
22a35f0b ILT |
2094 | * elf32-mips.c (mips_elf_symbol_processing): Set SEC_ALLOC, not |
2095 | SEC_NO_FLAGS, for .acommon section. From Peter Schauer | |
2096 | <[email protected]>. | |
2097 | ||
fb417a21 MM |
2098 | Sat Oct 14 21:36:02 1995 Michael Meissner <[email protected]> |
2099 | ||
2100 | * coff-ppc.c (in_reloc_p): Add, clone from coff-i386.c. | |
2101 | ||
2102 | Fri Oct 13 17:48:43 1995 Ken Raeburn <[email protected]> | |
2103 | ||
2104 | * acconfig.h (HAVE_SYS_PROCFS_H): Undef, with comment. | |
2105 | * config.in: Regenerated. | |
2106 | ||
2107 | * opncls.c (getpagesize) [!HAVE_GETPAGESIZE]: Define as 2048. | |
2108 | (_bfd_chunksize): New variable. | |
2109 | (_bfd_new_bfd): Set it to getpagesize() if negative, and use it | |
2110 | for obstack chunk size. | |
2111 | * configure.in: Check for getpagesize. | |
2112 | * configure: Regenerated. | |
2113 | ||
2114 | Mon Sep 25 22:49:32 1995 Andreas Schwab <[email protected]> | |
2115 | ||
2116 | * trad-core.c (rawptr): Make it a local variable of | |
2117 | ptrace_unix_core_file_p. | |
2118 | ||
b1e46369 SC |
2119 | Fri Oct 13 11:22:01 1995 steve chamberlain <[email protected]> |
2120 | ||
2121 | * coff-arm.c (in_reloc_p): New. | |
2122 | * coff-i386.c (in_reloc_p): New. | |
2123 | * coffcode.h: Allways include peicode.h if COFF_WITH_PE. | |
2124 | (coff_write_object_contents): Only set has_reloc_section | |
2125 | if PE_IMAGE. | |
2126 | * cofflink.c (_bfd_coff_generic_relocate_section): Call | |
2127 | in_reloc_p to decide if reloc should be emitted. | |
2128 | * libcoff.h (pe_data_type.in_reloc_p): New. | |
2129 | * peicode.h (pe_mkobject): Initialize in_reloc_p. | |
2130 | ||
ee9f09cd ILT |
2131 | Wed Oct 11 00:49:29 1995 Ian Lance Taylor <[email protected]> |
2132 | ||
b1e46369 SC |
2133 | * cofflink.c (_bfd_coff_internal_syment_name): Move to coffgen.c. |
2134 | (_bfd_coff_read_internal_relocs): Likewise. | |
2135 | * coffgen.c (_bfd_coff_internal_syment_name): Copy from coffgen.c. | |
2136 | (_bfd_coff_read_internal_relocs): Likewise. | |
2137 | ||
ee9f09cd ILT |
2138 | * elflink.h (elf_link_add_object_symbols): Correct conditions |
2139 | under which type and size change warnings are issued. | |
2140 | ||
78b31b6b ILT |
2141 | Tue Oct 10 18:32:46 1995 Ian Lance Taylor <[email protected]> |
2142 | ||
2143 | * coffgen.c (coff_count_linenumbers): Don't count line numbers for | |
2144 | a symbol which is not in a real section. | |
2145 | (coff_write_native_symbol): Corresponding change. | |
2146 | ||
2147 | * cofflink.c (_bfd_coff_link_hash_newfunc): Rename from | |
2148 | coff_link_hash_newfunc and make non-static. | |
2149 | (_bfd_coff_link_hash_table_init): New function, broken out of | |
2150 | _bfd_coff_link_hash_table_create. | |
2151 | (_bfd_coff_link_hash_table_create): Use it. | |
2152 | (process_embedded_commands): Make static. | |
2153 | * libcoff-in.h ((_bfd_coff_link_hash_newfunc): Declare. | |
2154 | (_bfd_coff_link_hash_table_init): Declare. | |
2155 | * libcoff.h: Rebuild. | |
2156 | ||
2157 | * coffcode.h (coff_mkobject_hook): If RS6000COFF_C, set cputype | |
2158 | field in XCOFF tdata. | |
2159 | (coff_set_arch_mach_hook): Check ifdef RS6000COFF_C, not ifdef | |
2160 | U802ROMAGIC, for clarity. Try to set arch and machine correctly | |
2161 | based on cputype stored in a.out header, or in n_type of initial | |
2162 | .file symbol. | |
2163 | (coff_write_object_contents): Set cputype correctly in a.out | |
2164 | header. | |
2165 | (coff_slurp_symbol_table): Add casts to file_ptr to avoid | |
2166 | warnings. | |
2167 | * coffswap.h (coff_swap_aouthdr_in): Swap in cputype field. | |
2168 | (coff_swap_aouthdr_out): Swap out cputype field. Don't clear | |
2169 | old resv1 field. | |
2170 | * libcoff-in.h (struct xcoff_tdata): Add cputype field. | |
2171 | * libcoff.h: Rebuild. | |
2172 | ||
2173 | * cpu-rs6000.c (rs6000_compatible): New static function. | |
2174 | (bfd_rs6000_arch): Use it. | |
2175 | * cpu-powerpc.c (powerpc_compatible): New static function. | |
2176 | (arch_info_struct): Define various flavours of PowerPC. | |
2177 | (bfd_powerpc_arch): Use powerpc_compatible. Point at | |
2178 | arch_info_struct. | |
2179 | ||
9dd7e56f FF |
2180 | Tue Oct 10 10:50:46 1995 Fred Fish <[email protected]> |
2181 | ||
78b31b6b | 2182 | * Makefile.in (FLAGS_TO_PASS): Remove BISON. |
9dd7e56f | 2183 | |
8235c112 ILT |
2184 | Tue Oct 10 01:28:29 1995 Ian Lance Taylor <[email protected]> |
2185 | ||
2186 | * elflink.h (elf_link_add_object_symbols): Don't warn about | |
2187 | changing the size or type if the old definition was weak. | |
2188 | ||
0322af0d ILT |
2189 | Mon Oct 9 11:24:08 1995 Ian Lance Taylor <[email protected]> |
2190 | ||
49488f2b ILT |
2191 | * coffcode.h (combined_entry_type): Add fix_line field. |
2192 | (coff_slurp_line_table): Warn if we try to set the lineno field of | |
2193 | a symbol twice. | |
2194 | (coff_slurp_symbol_table): If RS6000COFF_C, handle C_BINCL and | |
2195 | C_EINCL by setting fix_line. Fix C_BSTAT symbol value. | |
2196 | * coffgen.c (coff_mangle_symbols): Handle fix_line. | |
2197 | (coff_write_symbol): Only use N_DEBUG if the symbol is in the | |
2198 | absolute section. | |
2199 | (coff_print_symbol): Print fix_value symbols in a useful fashion. | |
2200 | * libcoff.h: Rebuild. | |
2201 | ||
5f710a3a ILT |
2202 | * libcoff-in.h (struct xcoff_tdata): Define. |
2203 | (xcoff_data): Define. | |
2204 | * bfd.c (struct _bfd): Add xcoff_obj_data field to tdata union. | |
2205 | * bfd-in2.h, libcoff.h: Rebuild. | |
2206 | * coff-rs6000.c (xcoff_mkobject): New static function. | |
2207 | (coff_mkobject): Define. | |
2208 | (xcoff_copy_private_bfd_data): New static function. | |
2209 | (coff_bfd_copy_private_bfd_data): Define. | |
2210 | (rs6000coff_howto_table): Change R_TOC complain_on_overflow from | |
2211 | signed to bitfield. | |
2212 | (rs6000coff_vec): Add DYNAMIC to object_flags. | |
2213 | * coffcode.h (sec_to_styp_flags): If RS6000COFF_C, handle .pad and | |
2214 | .loader sections specially. | |
2215 | (coff_new_section_hook): If RS6000COFF_C, get the .text and .data | |
2216 | section alignment from the XCOFF tdata information. | |
2217 | (coff_mkobject_hook): If RS6000COFF_C, set DYNAMIC based on | |
2218 | F_SHROBJ, and copy the extra a.out header information into the | |
2219 | XCOFF tdata structure. | |
2220 | (coff_write_object_contents): If RS6000COFF_C, set F_SHROBJ, | |
2221 | F_DYNLOAD and the extra a.out header information. | |
2222 | (coff_slurp_symbol_table): Set BSF_NOT_AT_END for a C_EXT or | |
2223 | C_HIDEXT symbol with attached csect information. | |
2224 | * coffswap.h (coff_swap_aouthdr_in): If RS6000COFF_C, swap | |
2225 | in the o_maxdata field. | |
2226 | (coff_swap_aouthdr_out): If RS6000COFF_C, swap extra XCOFF fields. | |
2227 | * coffgen.c (coff_renumber_symbols): Don't move any symbol to the | |
2228 | end if BSF_NOT_AT_END is set. | |
3f2c5b2d | 2229 | |
0322af0d ILT |
2230 | * targets.c (bfd_target): Rename _bfd_read_ar_hdr field to |
2231 | _bfd_read_ar_hdr_fn. | |
2232 | * libbfd-in.h (_bfd_read_ar_hdr): Update accordingly. | |
2233 | * bfd-in2.h, libbfd.h: Rebuild. | |
2234 | * archive.c (_bfd_get_elt_at_filepos): Cast _bfd_read_ar_hdr | |
2235 | return value. | |
2236 | (do_slurp_bsd_armap, do_slurp_coff_armap): Likewise. | |
2237 | (bfd_slurp_bsd_armap_f2): Likewise. | |
2238 | (_bfd_slurp_extended_name_table): Likewise. | |
2239 | ||
3266eaff KR |
2240 | Fri Oct 6 16:18:35 1995 Ken Raeburn <[email protected]> |
2241 | ||
2242 | Mon Sep 25 22:49:32 1995 Andreas Schwab <[email protected]> | |
2243 | ||
2244 | * archive.c (bfd_get_next_mapent): Return BFD_NO_MORE_SYMBOLS | |
2245 | when the symbol table is empty. | |
2246 | ||
2247 | * elf32-m68k.c (elf_m68k_size_dynamic_sections): Don't reserve | |
2248 | space for section symbols, since we don't output them either. | |
2249 | (elf_m68k_adjust_dynindx): Removed. | |
2250 | ||
2251 | * ptrace-core.c (rawptr): Make it a local variable of | |
2252 | ptrace_unix_core_file_p. | |
3266eaff | 2253 | |
249479fa MM |
2254 | Fri Oct 6 12:24:47 1995 Michael Meissner <[email protected]> |
2255 | ||
45b5d2f0 MM |
2256 | * coff-rs6000.c (xcoff_write_archive_contents): Return false, not |
2257 | NULL. | |
2258 | ||
249479fa MM |
2259 | * config.bfd (powerpc{,le}-{elf,sysv4,eabi,solaris2}): Add NT, and |
2260 | Mac object file formats. | |
2261 | ||
c53fac12 ILT |
2262 | Fri Oct 6 12:04:02 1995 Ian Lance Taylor <[email protected]> |
2263 | ||
4372f33f ILT |
2264 | * coffgen.c (coff_fix_symbol_name): Don't try to set up file |
2265 | auxent if there isn't one. | |
2266 | (coff_write_symbols): If there is no file auxent, use SYMNMLEN | |
2267 | rather than FILNMLEN as the maximum name length. | |
2268 | ||
0fc9ada9 ILT |
2269 | * coffcode.h (bfd_coff_backend_data): Add new field |
2270 | _bfd_coff_print_aux. | |
2271 | (bfd_coff_print_aux): New static function. | |
2272 | (coff_pointerize_aux_hook (RS6000COFF_C version)): Pointerize the | |
2273 | scnlen field of an XTY_LD csect aux entry. | |
2274 | (coff_print_aux): New static function. | |
2275 | (coff_slurp_symbol_table): Don't pointerize scnlen field; now done | |
2276 | in coff_pointerize_aux_hook. | |
2277 | (bfd_coff_std_swap_table): Initialize new field. | |
2278 | * coffgen.c (coff_print_symbol): Call bfd_coff_print_aux. | |
2279 | * libcoff.h: Rebuild. | |
2280 | * coff-alpha.c (alpha_ecoff_backend_data): Initialize new field. | |
2281 | * coff-mips.c (mips_ecoff_backend_data): Likewise. | |
2282 | ||
7860fe38 ILT |
2283 | * coffcode.h (coff_write_object_contents): On AIX, clear F_RELFLG |
2284 | if there are symbols, for native AIX ld compatibility. | |
2285 | ||
c80cc833 ILT |
2286 | * coffcode.h (bfd_coff_backend_data): Add new field |
2287 | _bfd_coff_pointerize_aux_hook. | |
2288 | (coff_pointerize_aux_hook): Define as a function if RS6000COFF_C | |
2289 | or I960, and as 0 otherwise. | |
2290 | (bfd_coff_std_swap_table): Initialize new field. | |
2291 | * libcoff.h: Rebuild. | |
2292 | * coffgen.c (coff_pointerize_aux): Change parameters to take | |
2293 | symbol pointer instead of type and class, and to take aux index. | |
2294 | Call _bfd_coff_pointerize_aux_hook if it is defined. | |
2295 | (coff_get_normalized_symtab): Always call coff_pointerize_aux. | |
2296 | * coff-alpha.c (alpha_ecoff_backend_data): Initialize all fields. | |
2297 | * coff-mips.c (mips_ecoff_backend_data): Likewise. | |
2298 | ||
c53fac12 ILT |
2299 | * coff-rs6000.c: Add full support for AIX archives. Rewrite old |
2300 | read-only/host-only support. | |
2301 | ||
2302 | * coffcode.h (coff_slurp_symbol_table): Set C_HIDEXT symbols to be | |
2303 | BSF_LOCAL. | |
d11e6b52 ILT |
2304 | (OTHER_GLOBAL_CLASS): Do not define to be C_HIDEXT if |
2305 | RS6000COFF_C. | |
c53fac12 ILT |
2306 | |
2307 | * targets.c (bfd_target): Add _bfd_read_ar_hdr field. Modify | |
2308 | BFD_JUMP_TABLE_ARCHIVE accordingly. | |
2309 | * libbfd-in.h (_bfd_snarf_ar_hdr): Don't declare. | |
2310 | (_bfd_compute_and_write_armap): Declare. | |
2311 | (_bfd_generic_read_ar_hdr): Declare. | |
2312 | (_bfd_read_ar_hdr): Define. | |
2313 | (_bfd_noarchive_read_ar_hdr): Define. | |
2314 | (_bfd_archive_bsd_read_ar_hdr): Define. | |
2315 | (_bfd_archive_coff_read_ar_hdr): Define. | |
2316 | * archive.c: Change all callers of _bfd_snarf_ar_hdr to call | |
2317 | _bfd_read_ar_hdr instead. | |
2318 | (_bfd_generic_read_ar_hdr): Rename from _bfd_snarf_ar_hdr. | |
2319 | (_bfd_compute_and_write_armap): Rename from | |
2320 | compute_and_write_armap. Make non-static. Change all callers. | |
2321 | * ecoff.c (_bfd_ecoff_slurp_armap): Call _bfd_read_ar_hdr rather | |
2322 | than _bfd_snarf_ar_hdr. | |
2323 | * aout-target.h (MY_read_ar_hdr): Define if not defined. | |
2324 | * ieee.c (ieee_read_ar_hdr): Define. | |
2325 | * libecoff.h (_bfd_ecoff_read_ar_hdr): Define. | |
2326 | * oasys.c (oasys_read_ar_hdr): Define. | |
2327 | * som.c (som_read_ar_hdr): Define. | |
2328 | * bfd-in2.h, libbfd.h: Rebuild. | |
2329 | ||
f8e47484 SC |
2330 | Thu Oct 5 14:04:07 1995 steve chamberlain <[email protected]> |
2331 | ||
2332 | * peicode.c (coff_swap_filehdr_in): If symptr is | |
2333 | zero, there aren't any symbols, even if nsyms is set. | |
2334 | ||
2b874a2d ILT |
2335 | Thu Oct 5 11:45:02 1995 Ian Lance Taylor <[email protected]> |
2336 | ||
aca73687 ILT |
2337 | * libecoff.h (struct ecoff_backend_data): Add adjust_headers |
2338 | field. | |
2339 | * ecoff.c (ecoff_sec_to_styp_flags): Check for various Alpha | |
2340 | sections, and set styp correctly for them: .got, .hash, .dynamic, | |
2341 | .liblist, .rel.dyn, .conflic, .dynstr, .dynsym, .comment. | |
2342 | (_bfd_ecoff_styp_to_sec_flags): Check for various Alpha section | |
2343 | types. | |
2344 | (ecoff_sort_hdrs): New static function. | |
2345 | (ecoff_compute_section_file_positions): Return boolean, not void. | |
2346 | Sort the sections by VMA before looking through them. Put the | |
2347 | first non SEC_ALLOC section on a new page. Put every SEC_ALLOC | |
2348 | section on an appropriate boundary within the page. | |
2349 | (ecoff_compute_reloc_file_positions): Check return value of | |
2350 | ecoff_compute_section_file_positions. | |
2351 | (_bfd_ecoff_set_section_contents): Likewise. | |
2352 | (_bfd_ecoff_write_object_contents): Check for various Alpha | |
2353 | section types when incrementing text_size and data_size. Call | |
2354 | adjust_headers backend function if it exists. | |
2355 | * coff-alpha.c (alpha_adjust_headers): New static function. | |
2356 | (alpha_ecoff_backend_data): Initialize adjust_headers field. | |
2357 | * coff-mips.c (mips_ecoff_backend_data): Likewise. | |
2358 | ||
2b874a2d ILT |
2359 | * hosts/i386bsd.h: Restore file incorrectly deleted on Sep 6. |
2360 | ||
c780e5db JL |
2361 | Wed Oct 4 18:15:02 1995 Jeff Law ([email protected]) |
2362 | ||
2363 | * rs6000-core.c (CORE_VERSION_1): Use CORE_VERSION_1 instead | |
2364 | of ALTERNATE_AIX_CORE_FORMAT. | |
2365 | * configure.in (aix4): No longer need CORE_FLAGS. | |
2366 | * configure: Updated. | |
2367 | ||
2a01c351 KR |
2368 | Wed Oct 4 15:36:36 1995 Ken Raeburn <[email protected]> |
2369 | ||
2370 | NS32k changes from Ian Dall: | |
2371 | * aoutx.h (MY_final_link_relocate, MY_relocate_contents): New | |
2372 | macros. | |
2373 | (aout_link_input_section_std, aout_link_input_section_ext, | |
2374 | aout_link_reloc_link_order): Call them instead of _bfd_* | |
2375 | versions. | |
2376 | * aout-target.h (MY_exec_header_not_counted): New macro, defaults | |
2377 | to zero. | |
2378 | (backend_data): Use it instead of hardcoded zero. | |
2379 | ||
2380 | * aout-ns32k.c (CTOR_TABLE_RELOC_HOWTO): New macro. | |
2381 | (MY_swap_std_reloc_out): Use udata.i for KEEPIT, don't call stoi. | |
2382 | ||
2383 | * ns32knetbsd.c: Include bfd.h. | |
2384 | (MY_text_includes_header, MY_bfd_reloc_type_lookup): New macros. | |
2385 | (MY_bfd_reloc_type_lookup): Declare function too. | |
2386 | * pc532-mach.c (set_sizes): Don't declare. | |
2387 | (MY_text_includes_header, MY_exec_header_not_counted): Define. | |
2388 | (backend_data, MY_backend_data): Don't define. | |
2389 | ||
2390 | * config.bfd: Treat ns32k-pc532-ux* like ns32k-pc532-mach*, and | |
2391 | ns32k-*-lites* like ns32k-*-netbsd*. | |
2392 | ||
2393 | * hosts/nbsd.h: Swap order of sys/vmparam.h and sys/param.h, to | |
2394 | compile on lites. | |
2395 | ||
5944d75b ILT |
2396 | Wed Oct 4 14:15:52 1995 Ian Lance Taylor <[email protected]> |
2397 | ||
2398 | * coffcode.h (coff_write_object_contents): Restore setting | |
2399 | f_timdat to 0, deleted on August 22. | |
2400 | ||
db344f82 SC |
2401 | Tue Oct 3 16:28:32 1995 steve chamberlain <[email protected]> |
2402 | ||
2403 | * coffcode.h (coff_bfd_copy_private_symbol_data, | |
2404 | coff_bfd_copy_private_section_data, | |
2405 | coff_bfd_copy_private_bfd_data): ifdef to allow overrides. | |
2406 | * peicode.h (coff_bfd_copy_private_bfd_data): New | |
2407 | (pe_bfd_copy_private_bfd_data): New. | |
2408 | (coff_swap_scnhdr_in): Swap bss size into the right place. | |
2409 | (pe_print_private_bfd_data): Add some newlines. | |
5944d75b | 2410 | |
c780e5db | 2411 | Tue Oct 3 11:53:04 1995 Jeff Law ([email protected]) |
97f1feda JL |
2412 | |
2413 | * som.c (setup_sections): Don't die if a space has no subspaces. | |
2414 | ||
3d7c42c9 ILT |
2415 | Mon Oct 2 14:08:55 1995 Ian Lance Taylor <[email protected]> |
2416 | ||
2417 | * elflink.h (elf_link_add_object_symbols): Don't let a weak | |
2418 | dynamic symbol override a common symbol. Don't change the size or | |
2419 | type if they have been set and the new symbol is not a definition. | |
2420 | Warn if the size or type changes. | |
2421 | ||
c780e5db | 2422 | Sun Oct 1 01:34:41 1995 Jeff Law ([email protected]) |
709af562 JL |
2423 | |
2424 | * som.c (som_begin_writing): Don't write the symbol table or | |
2425 | symbol strings. | |
2426 | (som_finish_writing): Write them here. Place them after the | |
2427 | subspace data, but before the relocs. | |
2428 | ||
2429 | Fri Sep 29 11:01:55 1995 Ian Lance Taylor <[email protected]> | |
2430 | ||
2431 | * sunos.c (sunos_add_one_symbol): Just pass false, not | |
2432 | info->shared_library, to sunos_create_dynamic_sections. | |
2433 | (sunos_scan_ext_relocs): Don't warn about a reloc in the .text | |
2434 | section. | |
2435 | (sunos_check_dynamic_reloc): Remove .text section assertion. | |
2436 | ||
7009e451 SS |
2437 | Thu Sep 28 18:48:47 1995 Stan Shebs <[email protected]> |
2438 | ||
2439 | * config.bfd: Add powerpc-*-macos*, powerpc-*-mpw*. | |
2440 | * configure, configure.in: Add pmac_xcoff_vec case. | |
2441 | * Makefile.in (BFD32_BACKENDS): Add coff-pmac.o. | |
2442 | * coff-pmac.c: New file, PowerMac XCOFF support. | |
2443 | * coffcode.h (coff_set_arch_mach_hook): Add PowerMac case. | |
2444 | * targets.c (pmac_xcoff_vec): Declare. | |
2445 | ||
2446 | * mpw-config.in: Various changes to be compatible with the | |
2447 | autoconf-based configury. | |
2448 | * mpw-make.sed: New file, sed commands to translate Unix | |
2449 | makefile into MPW syntax. | |
2450 | * mpw-make.in: Remove. | |
2451 | * hosts/mpw.h: Remove. | |
2452 | * bfd-in.h, bfd-in2.h: If MPW, include the file that defines | |
2453 | true and false as enums, then define TRUE_FALSE_ALREADY_DEFINED. | |
2454 | ||
b91537be SC |
2455 | Thu Sep 28 17:06:23 1995 steve chamberlain <[email protected]> |
2456 | ||
2457 | * binary.c (binary_get_symtab): Return an empty string on error. | |
2458 | * opncls.c (bfd_fdpenr): Change WIN32 restriction to WINGDB. | |
2459 | ||
30360a6f KK |
2460 | Thu Sep 28 15:30:44 1995 Kim Knuttila <krk@nellie> |
2461 | ||
2462 | * coff-ppc.c: Reformatted according to gnu conventions | |
2463 | Removed irrelevant "if 0" code | |
2464 | ||
20d1e233 ILT |
2465 | Thu Sep 28 11:19:53 1995 Ian Lance Taylor <[email protected]> |
2466 | ||
69fd4fdd ILT |
2467 | * hp300hpux.c (convert_sym_type): Treat secondary symbols as weak |
2468 | symbols rather than as indirect symbols. | |
2469 | (MY(slurp_symbol_table)): Don't do anything special about | |
2470 | secondary symbols. | |
2471 | ||
46b5a892 ILT |
2472 | * coffcode.h (coff_new_section_hook): Make sure that the alignment |
2473 | of .ctors and .dtors sections is no larger than 2. | |
2474 | ||
9db59230 ILT |
2475 | * sunos.c (sunos_add_one_symbol): Don't change |
2476 | bfd_link_hash_common to bfd_link_hash_new, since it may be on the | |
2477 | undef list. | |
2478 | (bfd_sunos_record_link_assignment): Don't put __DYNAMIC in the | |
2479 | dynamic symbols when creating a shared library. | |
2480 | (sunos_scan_ext_relocs): Handle relocs correctly when creating a | |
2481 | shared library. | |
2482 | (sunos_scan_dynamic_symbol): Don't mark the __DYNAMIC symbol as | |
2483 | written even if it is not defined in a regular object. | |
2484 | (sunos_write_dynamic_symbol): Use plt_offset for the address of | |
2485 | the jump table reloc. Add an assertion. Use RELOC_JMP_SLOT | |
2486 | rather than the constant 22. | |
2487 | (sunos_check_dynamic_reloc): Handle creating a shared library. | |
2488 | (sunos_finish_dynamic_link): Set the first entry in the GOT to | |
2489 | zero when creating a shared library. | |
2490 | * aoutx.h (NAME(aout,final_link)): If there is a symbol __DYNAMIC, | |
2491 | write it out at the start of the symbol table. | |
2492 | ||
20d1e233 ILT |
2493 | * Makefile.in (BFD32_BACKENDS): Add coff-arm.o. |
2494 | ||
a11e10fe DE |
2495 | Thu Sep 28 00:58:05 1995 Doug Evans <[email protected]> |
2496 | ||
2497 | * config.bfd: Add arm-*-coff. | |
2498 | * configure.in, configure: Add armcoff_{little,big}_vec. | |
2499 | * targets.c (armcoff_{little,big}_vec): Declare. | |
2500 | (bfd_target_vector): Add armcoff_{little,big}_vec. | |
2501 | * coff-arm.c (armcoff_{little,big}_vec): Always define. | |
2502 | ||
99062cfc ILT |
2503 | Wed Sep 27 10:37:14 1995 Ian Lance Taylor <[email protected]> |
2504 | ||
2505 | * targets.c (bfd_find_target): Remove debugging code. | |
2506 | ||
deacbe0f KK |
2507 | Wed Sep 27 07:23:39 1995 Kim Knuttila <krk@nellie> |
2508 | ||
2509 | * coff-ppc.c, pe-ppc.c, pei-ppc.c: Initial bfd for coff/PE | |
2510 | support on powerpc. | |
2511 | * Makefile.in: added *-ppc files | |
2512 | * coffcode.h: ppc MAGIC, and use peicode.h rather than coffswap.h to | |
2513 | allow pe based .o's to be shared with other tools on ppc/NT | |
2514 | * config.bfd: added powerpc[le]-[pe|winnt] config support | |
2515 | * configure, configure.in: added bfd_powerpc[le]_pe[i]_vec | |
2516 | * peicode.h: Added more section flags for PE on ppc | |
2517 | Added coff_swap_filehdr_out to allow peicode.h to be | |
2518 | used for non-image PE files on ppc. | |
2519 | Check for image, or not, before copying pe_opthdr | |
2520 | * targets.c: Added new bfd's | |
30360a6f KK |
2521 | * targets.c: Removed two inactive bfds that shouldn't have made it this |
2522 | far. | |
deacbe0f | 2523 | |
d22b02e0 MM |
2524 | Tue Sep 26 14:06:41 1995 Michael Meissner <[email protected]> |
2525 | ||
2526 | * elf32-ppc.c (ppc_reloc_type): Rename from reloc_type, and use | |
2527 | explicit values to initialize all relocs. Change all users. | |
2528 | (ppc_elf_brtaken_inner): New function to handle branch predicition | |
2529 | relocs. | |
2530 | (ppc_elf_brtaken_reloc): Ditto. | |
2531 | (ppc_elf_howto_raw): Use new functions. Make sure all unsupported | |
2532 | relocs use ppc_elf_unsupported_reloc. | |
2533 | (ppc_elf_merge_private_bfd_data): Keep track of whether an error | |
2534 | needs to be reported. | |
2535 | (ppc_elf_relocate_section): Support branch prediction relocs. | |
2536 | ||
fcf490c0 ILT |
2537 | Tue Sep 26 12:48:05 1995 Ian Lance Taylor <[email protected]> |
2538 | ||
e6cb7b41 ILT |
2539 | * bfd.c (bfd_assert): Remove \n from string passed to |
2540 | _bfd_error_handler. | |
2541 | ||
1af85fbb ILT |
2542 | * coff-i386.c: (TWO_DATA_SECS): Don't define. |
2543 | * coffcode.h (bfd_coff_backend_data): Remove _bfd_make_section_hook. | |
2544 | (bfd_coff_make_section_hook): Don't define. | |
2545 | (coff_make_section_hook): Remove. | |
2546 | (sec_to_styp_flags): Remove TWO_DATA_SECS case. | |
2547 | (styp_to_sec_flags): Likewise. | |
2548 | (coff_write_object_contents): Likewise. | |
2549 | (bfd_coff_std_swap_table): Don't initialize make_section_hook | |
2550 | field. | |
2551 | * libcoff.h: Rebuild. | |
2552 | * coffgen.c (make_a_section_from_file): Just call | |
2553 | bfd_make_section_anyway, not bfd_make_section or | |
2554 | bfd_coff_make_section_hook. | |
2555 | * ecoff.c (_bfd_ecoff_make_section_hook): Remove. | |
2556 | * libecoff.h (_bfd_ecoff_make_section_hook): Don't declare. | |
2557 | * coff-alpha.c (alpha_ecoff_backend_data): Don't initialize | |
2558 | make_section_hook field. | |
2559 | * coff-mips.c (mips_ecoff_backend_data): Likewise. | |
2560 | ||
fcf490c0 ILT |
2561 | * aoutx.h (translate_from_native_sym_flags): Don't try to stuff |
2562 | pointers into value field for warning and indirect symbols; just | |
2563 | leave the value field alone. | |
2564 | * linker.c (generic_link_add_symbol_list): Use next symbol for | |
2565 | warning and indirect symbols, rather than looking in symbol value. | |
2566 | * ecoff.c (ecoff_set_symbol_info): Remove indirect_ptr_ptr | |
2567 | parameter. Change all callers. Remove support for indirect | |
2568 | symbols; it didn't work anyhow. | |
2569 | (_bfd_ecoff_slurp_symbol_table): Remove indirect_ptr variable. | |
2570 | * syms.c: Change comments about BSF_WARNING and BSF_INDIRECT. | |
2571 | * bfd-in2.h: Rebuild. | |
2572 | ||
cc47d19a MM |
2573 | Mon Sep 25 16:04:09 1995 Michael Meissner <[email protected]> |
2574 | ||
2575 | * elf32-ppc.c (ppc_elf_howto_raw): For all 14-bit branch relocs, | |
2576 | go back to telling the tools this reloc operates on 32 bits. | |
2577 | ||
81449d47 ILT |
2578 | Mon Sep 25 11:48:02 1995 Ian Lance Taylor <[email protected]> |
2579 | ||
7a7fbffb ILT |
2580 | * aout-adobe.c (aout_adobe_callback): Use _bfd_error_handler |
2581 | rather than a direct fprintf. | |
2582 | * archive.c (_bfd_write_archive_contents): Likewise. | |
2583 | * coffcode.h (coff_slurp_symbol_table): Likewise. | |
2584 | * elf32-ppc.c (ppc_elf_merge_private_bfd_data): Likewise. | |
2585 | (ppc_elf_unsupported_reloc): Likewise. | |
2586 | (ppc_elf_relocate_section): Likewise. | |
2587 | * i386linux.c (linux_tally_symbols): Likewise. | |
2588 | (linux_finish_dynamic_link): Likewise. | |
2589 | * osf-core.c (osf_core_core_file_p): Likewise. | |
2590 | * rs6000-core.c (rs6000coff_get_section_contents): Likewise. | |
2591 | * som.c (som_sizeof_headers): Likewise. | |
2592 | * srec.c (srec_bad_byte): Likewise. | |
2593 | * bfd.c (bfd_assert): Likewise. Also change file to be const. | |
2594 | * libbfd-in.h (bfd_assert): Declare first parameter const. | |
2595 | * libbfd.h: Rebuild. | |
2596 | * coff-a29k.c (a29k_reloc): Don't bother to fprintf; returning | |
2597 | bfd_reloc_overflow is enough. | |
2598 | * coff-h8300.c (rtype2howto): Don't bother to fprintf; just abort. | |
2599 | * coff-h8500.c (rtype2howto): Likewise. | |
2600 | * coff-z8k.c (rtype2howto): Likewise. | |
2601 | * coffcode.h (dummy_reloc16_extra_cases): Likewise. | |
2602 | * elf.c (_bfd_elf_get_lineno): Likewise. | |
2603 | (_bfd_elf_no_info_to_howto): Likewise. | |
2604 | (_bfd_elf_no_info_to_howto_rel): Likewise. | |
2605 | * hp300hpux.c (convert_sym_type): Likewise. | |
2606 | (MY(swap_std_reloc_in)): Likewise. | |
2607 | * elf.c (bfd_section_from_shdr): Remove #if 0 sections. | |
2608 | ||
f1c6dd5d ILT |
2609 | * libaout.h (struct aoutdata): Add line_buf field. |
2610 | * aoutx.h (NAME(aout,find_nearest_line)): Remove statics buffer | |
2611 | and filename_buffer. Instead, use a malloc buffer stored in the | |
2612 | new line_buf field. Remove length restrictions. | |
2613 | ||
f0500a41 ILT |
2614 | * coffgen.c (string_size): Remove static variable. |
2615 | (debug_string_size, debug_string_section): Likewise. | |
2616 | (coff_fix_symbol_name): Add string_size_p, debug_string_section_p, | |
2617 | and debug_string_size_p parameters. Use them instead of the | |
2618 | global variables. Change all callers. | |
2619 | (coff_write_symbol): Likewise. | |
2620 | (coff_write_alien_symbol, coff_write_native_symbol): Likewise. | |
2621 | (coff_write_symbols): Add local variables to replace removed | |
2622 | global variables. | |
2623 | ||
25b5a53d ILT |
2624 | * libcoff-in.h (struct coff_section_tdata): Add offset, i, |
2625 | function, and line_base fields. | |
2626 | * libcoff.h: Rebuild. | |
2627 | * coffgen.c (coff_find_nearest_line): Use section tdata to cache | |
2628 | information, rather than using static variables. | |
2629 | ||
641ac26a ILT |
2630 | * sunos.c (sunos_read_dynamic_info): Adjust offsets in an NMAGIC |
2631 | file. From Peter DeWolf <[email protected]>. | |
2632 | ||
81449d47 ILT |
2633 | * init.c (initialized): Remove static variable. |
2634 | (bfd_init): Don't bother setting initialized. | |
2635 | (bfd_check_init): Remove. | |
2636 | * opncls.c (_bfd_new_bfd): Don't call bfd_check_init. | |
2637 | * libbfd.h: Rebuild. | |
2638 | ||
138b9b81 PS |
2639 | Sat Sep 23 01:22:23 1995 Peter Schauer ([email protected]) |
2640 | ||
2641 | * rs6000-core.c (rs6000coff_core_p): Don't check the core file | |
2642 | size for full core dumps. Copy core file header to private data. | |
2643 | (rs6000coff_core_file_failing_command, | |
2644 | rs6000coff_core_file_failing_signal): New functions to extract | |
2645 | the file name and terminating signal from the core file. | |
2646 | * coff-rs6000.c: Use them. | |
2647 | ||
2ffbb79a ILT |
2648 | Fri Sep 22 17:44:47 1995 Ian Lance Taylor <[email protected]> |
2649 | ||
2650 | Change arch info to be const, initialized at compile time. | |
2651 | * archures.c: Reindent many functions. Change CONST to const. | |
2652 | (bfd_arch_info_type): Make arch_name const. Remove disassemble; | |
2653 | nothing set it anyhow. Make next const. | |
2654 | (bfd_arch_info_list): Remove. | |
2655 | (bfd_archures_list): Rename from archures_init_table. Change from | |
2656 | a table of function pointers to a table of bfd_arch_info_type | |
2657 | structure addresses. | |
2658 | (bfd_scan_arch): Rewrite accordingly. Return a const pointer. | |
2659 | (bfd_lookup_arch): Likewise. | |
2660 | (bfd_set_arch_info): Rewrite accordingly. Change argument to be a | |
2661 | const pointer. | |
2662 | (bfd_default_arch_struct): Make const. | |
2663 | (bfd_arch_init, bfd_arch_linkin): Remove. | |
2664 | (bfd_get_arch_info): Return a const pointer. | |
2665 | * init.c (bfd_init): Don't call bfd_arch_init. | |
2666 | * bfd.c (struct _bfd): Make arch_info const. | |
2667 | * bfd-in2.h: Rebuild. | |
2668 | * libbfd.h: Rebuild. | |
2669 | * configure.in: Put & before everything in $selarchs. | |
2670 | * configure: Rebuild. | |
2671 | * cpu-*.c: Change bfd_*_arch from a function which calls | |
2672 | bfd_arch_linkin to a const structure. | |
2673 | * ieee.c (ieee_object_p): Make arch const. | |
2674 | ||
02f85cda MM |
2675 | Fri Sep 22 16:23:18 1995 Michael Meissner <[email protected]> |
2676 | ||
2677 | * reloc.c (bfd_reloc_code_type): Add relocations to support all of | |
2678 | PowerPC V.4. | |
2679 | * bfd-in2.h: Regenerate. | |
2680 | * libbfd.h: Regenerate. | |
2681 | ||
2682 | * elf32-ppc.c (reloc_type): Update names to match current draft. | |
2683 | (ppc_elf_howto_raw): Mark 14 bit relocs as short sized and PC | |
2684 | relative. Update names to current V.4 draft. | |
2685 | (ppc_elf_reloc_type_lookup): Add support for more relocations. | |
2686 | (ppc_elf_relocate_section): Rename relocations to match draft. | |
2687 | ||
dd82c578 MM |
2688 | Thu Sep 21 21:53:18 1995 Michael Meissner <[email protected]> |
2689 | ||
2690 | * elf32-ppc.c (ppc_elf_merge_private_bfd_data): Allow modules | |
2691 | compiled with -mrelocatable-lib to be linked with either normal | |
2692 | modules or -mrelocatable modules. | |
2693 | ||
f69e888e ILT |
2694 | Wed Sep 20 12:03:26 1995 Ian Lance Taylor <[email protected]> |
2695 | ||
e18c4e8f ILT |
2696 | * coffcode.h (coff_write_object_contents): Clear the vstamp field |
2697 | in the a.out header. | |
2698 | ||
f69e888e ILT |
2699 | * aoutx.h (NAME(aout,swap_ext_reloc_out)): Don't set r_extern for |
2700 | a reloc against a local symbol, even if it's not a section. | |
2701 | ||
a5655244 ILT |
2702 | Tue Sep 19 17:02:26 1995 Ian Lance Taylor <[email protected]> |
2703 | ||
2704 | * targets.c (bfd_target): Remove unused align_power_min field. | |
2705 | * bfd-in2.h: Rebuild. | |
2706 | * All backends: Remove initialization of align_power_min. | |
2707 | ||
500d7394 SC |
2708 | Tue Sep 19 14:02:21 1995 steve chamberlain <[email protected]> |
2709 | ||
2710 | * peicode.h (coff_swap_scnhdr_out): Get sizes for BSS right. | |
500d7394 | 2711 | |
049df0a8 ILT |
2712 | Mon Sep 18 14:35:01 1995 Arne H. Juul <[email protected]> |
2713 | ||
2714 | * config.bfd (mips-dec-netbsd*): New target. | |
2715 | * configure.host (mips-dec-netbsd*): New host. | |
2716 | * configure.in (mips-dec-netbsd*): New native. | |
2717 | * configure: Rebuild. | |
2718 | ||
1862bbd8 ILT |
2719 | Fri Sep 15 10:24:36 1995 Ian Lance Taylor <[email protected]> |
2720 | ||
2721 | Make the COFF backend linker merge common types: | |
2722 | * cofflink.c (struct coff_debug_merge_element): Define. | |
2723 | (struct coff_debug_merge_type): Define. | |
2724 | (struct coff_debug_merge_hash_entry): Define. | |
2725 | (struct coff_debug_merge_hash_table): Define. | |
2726 | (coff_debug_merge_hash_table_init): Define. | |
2727 | (coff_debug_merge_hash_table_free): Define. | |
2728 | (coff_debug_merge_hash_lookup): Define. | |
2729 | (struct coff_final_link_info): Add debug_merge field. | |
2730 | (coff_debug_merge_hash_newfunc): New static function. | |
2731 | (_bfd_coff_final_link): Allocate and free debug_merge table. | |
2732 | (coff_link_input_bfd): Merge identical enum, struct and union | |
2733 | types. | |
2734 | ||
a208a70f ILT |
2735 | Thu Sep 14 14:53:58 1995 Ian Lance Taylor <[email protected]> |
2736 | ||
2737 | Convert i960 COFF to use COFF backend linker. | |
2738 | * coff-i960.c (coff_i960_relocate): Use a coff_section_data | |
2739 | structure to store the symbol being used. | |
2740 | (coff_i960_start_final_link): New static function. | |
2741 | (coff_i960_relocate_section): New static function. | |
2742 | (coff_i960_adjust_symndx): New static function. | |
2743 | (coff_start_final_link): Define. | |
2744 | (coff_relocate_section): Define. | |
2745 | (coff_adjust_symndx): Define. | |
2746 | * coffcode.h (bfd_coff_backend_data): Add new callback function | |
2747 | _bfd_coff_start_final_link. | |
2748 | (bfd_coff_start_final_link): Define. | |
2749 | (coff_start_final_link): Define if not defined. | |
2750 | (bfd_coff_std_swap_table): Add coff_start_final_link. | |
2751 | * cofflink.c (_bfd_coff_internal_syment_name): Make globally | |
2752 | visible. | |
2753 | (_bfd_coff_final_link): Call bfd_coff_start_final_link if the | |
2754 | function callback is not NULL. | |
2755 | * libcoff-in.h (struct coff_section_tdata): Add tdata field. | |
2756 | (_bfd_coff_internal_syment_name): Declare. | |
2757 | * libcoff.h: Rebuild. | |
2758 | * configure.in (icoff_big_vec): Add cofflink.o. | |
2759 | (icoff_little_vec): Likewise. | |
2760 | * configure: Rebuild. | |
2761 | ||
f0abedbe FF |
2762 | Wed Sep 13 17:38:23 1995 Fred Fish <[email protected]> |
2763 | ||
2764 | * Makefile.in (clean-info): Remove extraneous tab from line | |
2765 | following action. | |
2766 | ||
aa4b3dc5 ILT |
2767 | Wed Sep 13 13:27:53 1995 Ian Lance Taylor <[email protected]> |
2768 | ||
2769 | * cofflink.c (coff_link_input_bfd): Fail if a section with no | |
2770 | contents has relocs. | |
2771 | ||
4ca63811 | 2772 | Thu Sep 12 12:45:34 1995 steve chamberlain <[email protected]> |
beee31b1 SC |
2773 | |
2774 | * coffcode.h (coff_compute_section_file_positions): Keep the | |
2775 | raw size safe. | |
2776 | (coff_write_object_contents): Remember if it's a relocatable | |
2777 | file. | |
2778 | * libcoff-in.h (pe_data_type): New member 'has_reloc_section' | |
2779 | * peicode.h (coff_swap_filehdr_out): Clear not-reloc flag | |
2780 | if relocatable file. Swap out saved raw size. | |
2781 | ||
ae115e51 ILT |
2782 | Tue Sep 12 12:14:33 1995 Ian Lance Taylor <[email protected]> |
2783 | ||
9521bac3 ILT |
2784 | * Makefile.in (do_maintainer_clean): Rename from do_realclean. |
2785 | (maintainer-clean): Rename from realclean, passing | |
2786 | maintainer-clean down to subdirectories, but leave realclean as a | |
2787 | synonym. | |
2788 | ||
4ca63811 ILT |
2789 | * linker.c (_bfd_generic_link_add_one_symbol): Pass symbol name to |
2790 | warning callback. | |
2791 | ||
5aa4c3ff ILT |
2792 | * dep-in.sed: Remove config.h from generated dependencies. |
2793 | ||
396aaeb2 ILT |
2794 | * sunos.c (sunos_slurp_dynamic_symtab): New static function, |
2795 | broken out of sunos_canonicalize_dynamic_symtab. | |
2796 | (sunos_canonicalize_dynamic_symtab): Call new function | |
2797 | sunos_slurp_dynamic_symtab. | |
2798 | (sunos_add_dynamic_symbols): Add three new parameters. Return the | |
2799 | dynamic symbol table to the caller. | |
2800 | * aoutx.h (aout_link_add_symbols): Permit add_dynamic_symbols | |
2801 | callback to override the symbols being read. | |
2802 | * libaout.h (struct aout_backend_data): Add three new parameters | |
2803 | to add_dynamic_symbols callback. | |
2804 | ||
ae115e51 ILT |
2805 | Extensive minor changes to avoid various gcc warnings. Also: |
2806 | * Makefile.in (BFD32_BACKENDS): Remove coff-arm.o. | |
2807 | * archures.c (bfd_arch_info_type): Change mach field from long to | |
2808 | unsigned long. | |
2809 | (bfd_lookup_arch): Change machine parameter from long to unsigned | |
2810 | long. | |
2811 | ||
b088e4b2 ILT |
2812 | Mon Sep 11 10:55:47 1995 Ian Lance Taylor <[email protected]> |
2813 | ||
2814 | * sunos.c (sunos_scan_std_relocs): Fix BFD_ASSERT: it's OK to find | |
2815 | a symbol with a non-zero plt_offset. | |
2816 | ||
1dff7902 ILT |
2817 | Fri Sep 8 11:47:24 1995 Ian Lance Taylor <[email protected]> |
2818 | ||
2b71e1e4 ILT |
2819 | * elfcode.h (align_file_position): Remove; not used. |
2820 | ||
1dff7902 ILT |
2821 | * configure.in: Only check for <sys/procfs.h> on a native system, |
2822 | and make sure it defines prstatus_t. | |
2823 | * configure: Rebuild. | |
2824 | ||
870015b1 ILT |
2825 | Thu Sep 7 12:48:01 1995 Ian Lance Taylor <[email protected]> |
2826 | ||
535c89f0 ILT |
2827 | * sunos.c (sunos_write_dynamic_symbol): Correct m68k abort test. |
2828 | ||
936b870c ILT |
2829 | * config.in: Rename from config.h.in. |
2830 | * configure.in: Call AC_CONFIG_HEADER with config.h:config.in. | |
a7873a6c | 2831 | Check for config.h:config.in when creating stamp-h. |
936b870c | 2832 | * configure: Rebuild. |
a7873a6c ILT |
2833 | * Makefile.in (stamp-h): Depend upon config.in rather than |
2834 | config.h.in. Set CONFIG_HEADERS to config.h:config.in when | |
2835 | calling config.status. | |
936b870c | 2836 | |
870015b1 ILT |
2837 | * Makefile.in (do_distclean): Remove config.h and stamp-h. |
2838 | (Makefile): Just rebuild Makefile. | |
2839 | (config.h, stamp-h): New targets. | |
2840 | * configure.in: Create stamp-h when rebuilding config.h. | |
2841 | * configure: Rebuild. | |
2842 | ||
b7577823 ILT |
2843 | Wed Sep 6 15:00:33 1995 Ian Lance Taylor <[email protected]> |
2844 | ||
2845 | * configure.in: Call AC_CONFIG_HEADER. Substitute | |
2846 | HOST_64BIT_LONG. Check that various header files exist. Check | |
2847 | that fcntl exists. Call BFD_BINARY_FOPEN. Check whether malloc | |
2848 | and/or free need to be declared. Don't make a link to sysdep.h. | |
2849 | Define TRAD_HEADER for various hosts. | |
2850 | * configure: Rebuild. | |
2851 | * configure.host: Don't set my_host. Add definitions taken from | |
2852 | host header files for various entries. Remove entries which now | |
2853 | do nothing. | |
2854 | * acconfig.h: New file. | |
2855 | * config.h.in: New file, built by autoheader. | |
2856 | * sysdep.h: New file. | |
2857 | * Makefile.in (do_distclean): Don't remove sysdep.h. | |
2858 | (RECONFIG): Remove. | |
2859 | (LOCAL_H_DEPS): New variable. | |
2860 | ($(BFD_LIBS)): Use $(LOCAL_H_DEPS) rather than libbfd.h and | |
2861 | $(RECONFIG). | |
2862 | ($(BFD_MACHINES), $(BFD_BACKENDS)): Likewise. | |
2863 | ($(OPTIONAL_BACKENDS)): Likewise. | |
2864 | (stmp-bfd.h): Just substitute for BFD_HOST_64BIT_LONG, rather than | |
2865 | looking through sysdep.h. | |
2866 | * bfd-in.h (BFD_HOST_64BIT_LONG): Define; set by Makefile. | |
2867 | (BFD_HOST_64_BIT): Define based on BFD_HOST_64BIT_LONG. | |
2868 | (fprintf_vma, sprintf_vma): Likewise. | |
2869 | (int64_type, uint64_type): Don't define. | |
2870 | * bfd-in2.h: Rebuild. | |
2871 | * archures.c, bfd.c, srec.c: Include <ctype.h>. | |
2872 | * elfcore.h: Check HAVE_SYS_PROCFS_H rather than HAVE_PROCFS. | |
2873 | * lynx-core.c: Include stuff from old hosts/lynx.h. | |
2874 | * opncls.c (bfd_fdopenr): Check HAVE_FNCTL and defined (F_GETFL), | |
2875 | rather than NO_FCNTL. | |
2876 | * targets.c (bfd_target_list): Check HOST_HPPAHPUX and ! __STDC__ | |
2877 | rather than NATIVE_HPPAHPUX_COMPILER. | |
2878 | * trad-core.c: Don't include <errno.h>. Include TRAD_HEADER if it | |
2879 | is defined. | |
2880 | * hosts/*.h: Remove all header files which merely include, | |
2881 | declare, and define things. Leave header files which define | |
2882 | information needed by trad-core.c. | |
2883 | ||
2884 | * aclocal.m4 (BFD_BINARY_FOPEN): Define. | |
2885 | (BFD_CC_FOR_BUILD): Define. | |
2886 | * configure.in: Use BFD_CC_FOR_BUILD. | |
2887 | * configure: Rebuild. | |
2888 | ||
7a93ebdd ILT |
2889 | Tue Sep 5 19:35:28 1995 Ian Lance Taylor <[email protected]> |
2890 | ||
4c2e4d0e ILT |
2891 | * aclocal.m4: Don't try to grep ../Makefile if it doesn't exist. |
2892 | * configure: Rebuild. | |
2893 | ||
7a93ebdd ILT |
2894 | * coff-sparc.c (CALC_ADDEND): Don't set the addend to the value of |
2895 | a global symbol. | |
2896 | ||
866bb9e5 JM |
2897 | Tue Sep 5 12:48:26 1995 Jason Molenda ([email protected]) |
2898 | ||
2899 | * config.bfd: i386pe_ve -> i386pe_vec. | |
2900 | ||
2b79a104 ILT |
2901 | Mon Sep 4 14:02:43 1995 Ian Lance Taylor <[email protected]> |
2902 | ||
f515fb2f ILT |
2903 | * configure.host: Incorporate host Makefile fragments by setting |
2904 | shell variables. | |
2905 | * configure.in: Call AC_PROG_CC. Substitute CFLAGS, HDEFINES and | |
2906 | AR. Call AC_PROG_INSTALL. Substitute CC_FOR_BUILD, choosing a | |
2907 | value based on whether the code is being compiled by a cross | |
2908 | compiler. Don't substitute host_makefile_frag or frags. | |
2909 | * aclocal.m4: New file to define local AC_PROG_CC. | |
2910 | * configure: Rebuild. | |
2911 | * Makefile.in (INSTALL): Set to @INSTALL@. | |
2912 | (INSTALL_PROGRAM): Set to @INSTALL_PROGRAM@. | |
2913 | (INSTALL_DATA): Set to @INSTALL_DATA@. | |
2914 | (AR): Set to @AR@. | |
2915 | (CC): Define as @CC@. | |
2916 | (CFLAGS): Set to @CFLAGS@. | |
2917 | (CC_FOR_BUILD): Set to @CC_FOR_BUILD@. | |
2918 | (@host_makefile_frag@): Remove. | |
2919 | (ALL_CFLAGS): Change $(HDEFINES) to @HDEFINES@. Move $(CFLAGS) | |
2920 | after other options. | |
2921 | (config.status): Remove dependency upon @frags@. | |
2922 | * config/*.mh, config/README: Remove. | |
2923 | ||
2b79a104 ILT |
2924 | * config.bfd: Rewrite to incorporate the contents of the Makefile |
2925 | fragments by setting shell variables, rather than merely returning | |
2926 | the name of a Makefile fragment. | |
2927 | * configure.in: Use shell variables set by config.bfd rather than | |
2928 | looking at the target Makefile fragment files. Don't substitute | |
2929 | target_makefile_frag. Do substitute TDEFINES. | |
2930 | * configure: Rebuild. | |
2931 | * Makefile.in (@target_makefile_frag@): Remove. | |
2932 | (ALL_CFLAGS): Change $(TDEFINES) to @TDEFINES@. | |
2933 | * config/*.mt: Remove. | |
2934 | ||
2cb159a5 KR |
2935 | Mon Sep 4 03:13:28 1995 Ken Raeburn <[email protected]> |
2936 | ||
2937 | * configure.in: Put changequote lines around "i[345]86" patterns | |
2938 | section of core file support. | |
2939 | ||
ef07871c JL |
2940 | Sun Sep 3 11:31:58 1995 Jeff Law ([email protected]) |
2941 | ||
2942 | * som.c (som_bfd_print_private_bfd_data): Define to use the | |
2943 | generic version. | |
2944 | ||
1613e075 SC |
2945 | Fri Sep 1 17:08:40 1995 steve chamberlain <[email protected]> |
2946 | ||
2947 | * peicode.h (coff_swap_aouthdr_in): Add ImageBase to | |
2948 | entry, text_start and data_start. | |
2949 | ||
a52a3ce8 ILT |
2950 | Fri Sep 1 18:06:28 1995 Ian Lance Taylor <[email protected]> |
2951 | ||
a21227ef ILT |
2952 | * Makefile.in (OFILES): Remove $(TDEPFILES). |
2953 | * config/apollo.mt (TDEPFILES): Remove. | |
2954 | * config/README: Update. | |
2955 | ||
a52a3ce8 ILT |
2956 | * configure.in: For a native configuration, set COREFILE and |
2957 | COREFLAG based on the canonical host name. | |
2958 | * configure: Rebuild. | |
2959 | * Makefile.in: Rebuild dependencies. | |
2960 | (ALL_CFLAGS): Add @COREFLAG@. | |
2961 | (OFILES): Replace $(HDEPFILES) with @COREFILE@. | |
2962 | * coff-rs6000.c: Check AIX_CORE rather than HOST_AIX for core file | |
2963 | support routines. Check LYNX_CORE rather than HOST_LYNX. | |
2964 | * lynx-core.c: Check LYNX_CORE rather than HOST_LYNX. | |
2965 | * i386lynx.c: Likewise. | |
2966 | * m68klynx.c: Likewise. | |
2967 | * sparclynx.c: Likewise. | |
2968 | * rs6000-core.c: Check AIX_CORE rather than HOST_AIX. | |
2969 | * *-core.c: Comment changes. | |
2970 | * config/decstation.mh (HDEPFILES): Remove. | |
2971 | (HDEFINES): Remove -DTRAD_CORE. | |
2972 | * config/irix3.mh (RANLIB): Remove. | |
2973 | * config/irix4.mh (HDEPFILES, RANLIB): Remove. | |
2974 | (HDEFINES): Remove -DIRIX_CORE. | |
2975 | * config/riscos.mh (RANLIB, HDEPFILES): Remove. | |
2976 | (HDEFINES): Remove -DTRAD_CORE. | |
2977 | * config/ncr3000.mh (AR_FLAGS, RANLIB): Remove. | |
2978 | * config/ultra3.mh (RANLIB): Remove. | |
2979 | * config/aix4.mh, config/alphaosf.mh, config/amix.mh: Remove. | |
2980 | * config/apollo.mh, config/delta68.mh, config/delta88.mh: Remove. | |
2981 | * config/dpx2.mh, config/esix.mh, config/harris.mh: Remove. | |
2982 | * config/hp300.mh, config/hp300bsd.mh, config/hppabsd.mh: Remove. | |
2983 | * config/hppahpux.mh, config/hppaosf.mh: Remove. | |
2984 | * config/i386aix.mh, config/i386bsd.mh: Remove. | |
2985 | * config/i386linux.mh, config/i386mach3.mh: Remove. | |
2986 | * config/i386sco.mh, config/i386v.mh, config/i386v4.mh: Remove. | |
2987 | * config/irix5.mh, config/m88kmach3.mh, config/mipsbsd.mh: Remove. | |
2988 | * config/mipsmach3.mh, config/news-mips.mh: Remove. | |
2989 | * config/news.mh, config/pc532mach.mh, config/riscix.mh: Remove. | |
2990 | * config/rs600.mh, config/rs6000lynx.mh: Remove. | |
2991 | * config/solaris2.mh, config/stratus.mh: Remove. | |
2992 | * config/symmetry.mh, config/sysv4.mh, config/tahoe.mh: Remove. | |
2993 | * config/vaxbsd.mh, config/vaxult.mh, config/vaxult2.mh: Remove. | |
2994 | ||
d6f672b8 ILT |
2995 | Fri Sep 1 15:18:50 1995 Kazumoto Kojima <[email protected]> |
2996 | ||
2997 | * elflink.h (elf_bfd_final_link): Don't change a DT_INIT or | |
2998 | DT_FINI entry if the appropriate symbol is not in the hash table. | |
2999 | ||
3000 | * libelf.h (struct elf_backend_data): Add create_program_headers | |
3001 | and want_hdr_in_seg fields. | |
3002 | * elfxx-target.h (elf_backend_want_hdr_in_seg): Define if not | |
3003 | defined. | |
3004 | (elf_backend_create_program_headers): Likewise. | |
3005 | (elfNN_bed): Initialize create_program_headers and | |
3006 | want_hdr_in_seg. | |
3007 | * elf.c (get_program_header_size): Call create_program_headers | |
3008 | backend routine. | |
3009 | (map_program_segments): Check want_hdr_in_seg backend field. Call | |
3010 | create_program_headers backend routine. | |
3011 | ||
3012 | * elf.c (assign_file_positions_except_relocs): Align non allocated | |
3013 | sections when creating an executable. | |
3014 | ||
3015 | * elfcode.h (elf_swap_phdr_in): Make non static. | |
3016 | (elf_swap_phdr_out): Make non static. | |
3017 | * libelf.h (bfd_elf32_swap_phdr_in): Declare. | |
3018 | (bfd_elf32_swap_phdr_out): Declare. | |
3019 | (bfd_elf64_swap_phdr_in): Declare. | |
3020 | (bfd_elf64_swap_phdr_out): Declare. | |
3021 | ||
3022 | * ecofflink.c (ecoff_collect_shuffle): New static function. | |
3023 | (_bfd_ecoff_get_accumulated_pdr): New function. | |
3024 | (_bfd_ecoff_get_accumulated_sym): New function. | |
3025 | (_bfd_ecoff_get_accumulated_ss): New function. | |
3026 | * libbfd-in.h (_bfd_ecoff_get_accumulated_pdr): Declare. | |
3027 | (_bfd_ecoff_get_accumulated_sym): Declare. | |
3028 | (_bfd_ecoff_get_accumulated_ss): Declare. | |
3029 | * libbfd.h: Rebuild. | |
3030 | ||
0cb70568 ILT |
3031 | Fri Sep 1 13:20:25 1995 Ian Lance Taylor <[email protected]> |
3032 | ||
d6f672b8 ILT |
3033 | * libecoff.h (_bfd_ecoff_bfd_print_private_bfd_data): Fix typo. |
3034 | ||
0cb70568 ILT |
3035 | * elflink.h (elf_link_add_object_symbols): Handle indirect and |
3036 | warning symbols. If any section is named .gnu.warning.XXX, treat | |
3037 | the contents as a warning to be issued if the symbol XXX is | |
3038 | referenced. | |
3039 | (elf_link_output_extsym): For an indirect or warning symbol, just | |
3040 | output the symbol it points to. | |
3041 | ||
3042 | * linker.c (_bfd_link_hash_newfunc): Don't bother to set bfd_error | |
3043 | if bfd_hash_allocate fails, since it will already be set. | |
3044 | (generic_link_hash_newfunc): Likewise. | |
3045 | (archive_hash_newfunc): Likewise. | |
3046 | (hash_entry_bfd): New static function. | |
3047 | (_bfd_generic_link_add_one_symbol): Pass new arguments to warning | |
3048 | callback. Allocate a new warning using the hash table newfunc. | |
3049 | Use bfd_hash_replace to update the entry in the hash table, rather | |
3050 | than assuming we can copy the fields with structure assignment. | |
3051 | ||
3052 | * hash.c (bfd_hash_replace): New function. | |
3053 | * bfd-in.h (bfd_hash_replace): Declare. | |
3054 | * bfd-in2.h: Rebuild. | |
3055 | ||
f14db880 JSC |
3056 | Fri Sep 1 08:12:50 1995 James G. Smith <[email protected]> |
3057 | ||
3058 | * config.bfd: Add mips*vr4300-*-elf* target. | |
3059 | * config/mipsbvr4300.mt: Added. | |
3060 | ||
1613e075 | 3061 | See file ChangeLog.2 |
e6d739eb | 3062 | |
41126f15 JK |
3063 | \f |
3064 | Local Variables: | |
3065 | mode: indented-text | |
3066 | left-margin: 8 | |
6ec3bb6a ILT |
3067 | fill-column: 74 |
3068 | version-control: never | |
3069 | End: |