2011-05-06 Tristan Gingold <gingold@adacore.com>
[external/binutils.git] / ld / ChangeLog
1 2011-05-06  Tristan Gingold  <gingold@adacore.com>
2
3         * scripttempl/alphavms.sc (CODE): Add *$CODE*.
4
5 2011-05-04  Tristan Gingold  <gingold@adacore.com>
6
7         * emultempl/generic.em (ld_${EMULATION_NAME}_emulation): Add
8         LDEMUL_ADD_OPTIONS and LDEMUL_HANDLE_OPTION.
9         * emultempl/vms.em (OPTION_IDENTIFICATION): New macro.
10         (gld${EMULATION_NAME}_add_options): New function.
11         (gld${EMULATION_NAME}_list_options): Ditto.
12         (gld${EMULATION_NAME}_handle_option): Ditto.
13         (LDEMUL_ADD_OPTIONS, LDEMUL_HANDLE_OPTION)
14         (LDEMUL_LIST_OPTIONS): Define.
15
16 2011-05-04  Alan Modra  <amodra@gmail.com>
17
18         PR ld/12726
19         * ldexp.h (lang_phase_type): Add lang_assigning_phase_enum.
20         * ldexp.c (exp_fold_tree_1): Correct assign to dot comment.  Don't
21         assign to dot when lang_assigning_phase_enum.
22         * ldlang.h (lang_do_assignments): Update prototype.
23         * ldlang.c (lang_do_assignments): Add phase parameter.  Update all
24         callers.
25         * pe-dll.c (pe_dll_fill_sections, pe_exe_fill_sections): Update
26         lang_do_assignments calls.
27
28 2011-04-28  Daniel C. Klauer  <daniel.c.klauer@web.de>
29
30         PR ld/12614
31         * emultempl/pe.em (_after_open): Correctly check whether symbol is
32         in undef list.
33
34 2011-04-26  Kai Tietz  <ktietz@redhat.com>
35
36         * scripttempl/pe.sc: Handle .eh_frame($|.)* sections.
37         * scripttempl/pep.sc: Likewise.
38
39 2011-04-24  Alan Modra  <amodra@gmail.com>
40
41         PR ld/12365
42         PR ld/12696
43         * ldmain.c (notice): Delete "name" param, add "h".
44         * plugin.c (plugin_notice): Likewise.  Set non_ir_ref.  Handle
45         redefinitions of IR symbols in real BFDs.
46         (plugin_multiple_definition, plugin_multiple_common): Delete.
47         (non_ironly_hash, init_non_ironly_hash): Delete.
48         (is_visible_from_outside): Traverse entry_symbol chain.
49         (get_symbols): Use non_ir_ref flag rather than hash lookup.
50
51 2011-04-21  Tristan Gingold  <gingold@adacore.com>
52
53         * scripttempl/alphavms.sc: Add dwarf2 embedding marks.
54
55 2011-04-20  Tristan Gingold  <gingold@adacore.com>
56
57         * emultempl/aix.em (_add_options): Ignore -bbigtoc switch.
58
59 2011-04-20  Alan Modra  <amodra@gmail.com>
60
61         * ld.h (ld_config_type <hash_table_size>): Make it an unsigned long.
62
63 2011-04-20  Alan Modra  <amodra@gmail.com>
64
65         PR ld/12365
66         * ldfile.c (ldfile_try_open_bfd): Move code creating and switching
67         to plugin IR BFD..
68         * ldmain.c (add_archive_element): ..and similar code here..
69         * plugin.c (plugin_maybe_claim): ..to here.  New function.
70         (plugin_call_claim_file): Make static.
71         (asymbol_from_plugin_symbol): Set ELF st_shndx for common syms.
72         (plugin_multiple_common): New function.
73         (plugin_call_all_symbols_read): Hook in plugin_multiple_common.
74         * plugin.h (plugin_call_claim_file): Don't declare.
75         (plugin_maybe_claim): Declare.
76
77 2011-04-20  Alan Modra  <amodra@gmail.com>
78
79         PR ld/12365
80         * ldmain.c (multiple_definition): Take a bfd_link_hash_entry
81         pointer arg rather than "name", "obfd", "osec", "oval".  Add code
82         removed from linker.c.  Hack around xcofflink.c oddity in
83         passing NULL nbfd.
84         (multiple_common): Similarly.
85         * plugin.c (orig_allow_multiple_defs): Delete.
86         (plugin_call_all_symbols_read): Don't twiddle allow_multiple_definition.
87         (plugin_multiple_definition): Update.
88
89 2011-04-18  Kai Tietz  <ktietz@redhat.com>
90
91         * deffilep.y (def_aligncomm): Avoid duplets.
92
93         * deffilep.y (def_pool_str): New type.
94         (pool_strs): Local static.
95         (def_pool_alloc): Local function.
96         (def_pool_strdup): Likewise.
97         (def_pool_free): Likewise.
98         (opt_name): Replace xmalloc/xstrdup by
99         def_pool_alloc/def_pool_strdup.
100         (dot_name): Likewise.
101         (anylang_id): Likewise.
102         (def_lex): Likewise.
103         (def_file_parse): Call def_pool_free on
104         exit and cleanup directives elements.
105         (def_file_add_directive): Call def_pool_free.
106
107 2011-04-18  Paul Brook  <paul@codesourcery.com>
108
109         * emulparams/elf32_tic6x_le.sh: Define OTHER_READONLY_SECTIONS
110         for unwinding tables.
111
112 2011-04-18  Alan Modra  <amodra@gmail.com>
113
114         PR ld/12365
115         PR ld/12672
116         * ldfile.c (ldfile_try_open_bfd): Don't attempt any plugin action
117         when no_more_claiming.
118         * ldmain.c (add_archive_element): Likewise.
119         (multiple_definition): Remove plugin_multiple_definition call.
120         (notice): Remove plugin_notice call.
121         * ldlang.c (lang_list_insert_after, void lang_list_remove_tail): Move.
122         Delete prototype.
123         (plugin_insert): New static var.
124         (open_input_bfds): Only rescan libs after plugin insert point.
125         (lang_gc_sections): Omit plugin claimed files.
126         (lang_process): Set plugin_insert.  Only rescan when plugin adds
127         objects.
128         * plugin.h (no_more_claiming): Declare.
129         (plugin_notice, plugin_multiple_definition): Don't declare.
130         * plugin.c: Formatting.
131         (orig_notice_all, orig_allow_multiple_defs, orig_callbacks,
132         plugin_callbacks): New static vars.
133         (no_more_claiming): Make global.
134         (plugin_cached_allow_multiple_defs): Delete.
135         (plugin_get_ir_dummy_bfd): Set SEC_EXCLUDE on dummy .text section,
136         use newer bfd_make_section variant.  Make COMMON section too.
137         Error handling.  Correct setting of gp size.
138         (asymbol_from_plugin_symbol): Properly cast last arg of concat.
139         (message): Likewise for ACONCAT.
140         (asymbol_from_plugin_symbol): Use our COMMON section.
141         (get_symbols): When report_plugin_symbols, show visibility too.
142         (init_non_ironly_hash): Move.  Don't test non_ironly_hash.
143         (plugin_load_plugins): Save state of linker callbacks, set up to
144         call plugin_notice instead.  Call init_non_ironly_hash here.
145         (plugin_call_all_symbols_read): Set plugin_multiple_definition in
146         plugin callbacks.
147         (plugin_notice): Rewrite.
148         (plugin_multiple_definition): Make static, call original callback.
149
150 2011-04-15  Alan Modra  <amodra@gmail.com>
151
152         PR ld/12672
153         * ldlang.c (enum open_bfd_mode): New.
154         (open_input_bfds): Replace "force" param with "mode".  Reload
155         archives for rescan.  Update all callers.
156         (lang_process): Make another open_input_bfds pass for plugins.
157
158 2011-04-13  Kai Tietz  <ktietz@redhat.com>
159
160         PR binutils/12658
161         * deffile.h (def_file_add_export): Add is_dup argument.
162         (def_file_add_import): Likewise.
163         * deffilep.y (are_names_equal): New helper.
164         (cmp_export_elem): New helper.
165         (find_export_in_list): Add search routine for exports.
166         (def_file_add_export): Check for duplicates.
167         (cmp_import_elem): New helper.
168         (find_import_in_list): Add search routine for imports.
169         (def_file_add_import): Check for duplicates.
170         (def_exports): Handle duplicates.
171         (def_imports): Likewise.
172         * pe-dll.c (process_def_file_and_drectve): Likewise.
173         (pe_implied_import_dll): Likewise.
174
175 2011-04-11  Chris Quenelle  <chris.quenelle@oracle.com>
176
177         * scripttempl/elf.sc (.exception_ranges): Add new section.
178
179 2011-04-08  Hector Oron  <hector.oron@gmail.com>
180
181         PR ld/12643
182         * configure.tgt: Add support for arm-*-gnueabihf targets.
183
184 2011-04-07  Eric B. Weddington  <eric.weddington@atmel.com>
185
186         * Makefile.in: Regenerate. Remove stray eavrtiny10 rules.
187
188 2011-04-07  Joseph Myers  <joseph@codesourcery.com>
189
190         * configure.tgt: Remove stray ;;.
191
192 2011-04-06  Joseph Myers  <joseph@codesourcery.com>
193
194         * configure.tgt (thumb-*-linux-* | thumb-*-uclinux*,
195         strongarm-*-coff, strongarm-*-elf, strongarm-*-kaos*,
196         thumb-*-coff, thumb-*-elf, thumb-epoc-pe, thumb-*-pe,
197         xscale-*-coff, xscale-*-elf): Remove targets.
198
199 2011-03-31  H.J. Lu  <hongjiu.lu@intel.com>
200
201         * configure.tgt: Add elf_l1om to targ_extra_libpath for
202          x86_64-*-linux-*.
203
204         * emulparams/elf_l1om.sh: Remove duplicates.
205
206 2011-03-31  Bernd Schmidt  <bernds@codesourcery.com>
207
208         * emulparams/elf32_tic6x_le.sh (BIG_OUTPUT_FORMAT, EXTRA_EM_FILE,
209         GENERATE_SHLIB_SCRIPT): New defines.
210         (TEXT_START_ADDR): Define differently depending on target.
211         (.got): Redefine to include "*(.dsbt)".
212         (SDATA_START_SYMBOLS): Remove, replace with
213         (OTHER_GOT_SYMBOLS): New.
214         (OTHER_BSS_SECTIONS): Define only for ELF targets.
215         * emultempl/tic6xdsbt.em: New file.
216         * gen-doc.texi: Set C6X.
217         * ld.texinfo: Likewise.
218         (Options specific to C6X uClinux targets): New section.
219
220 2011-03-29  Alan Modra  <amodra@gmail.com>
221
222         PR ld/12613
223         * ldlex.l (lex_warn_invalid): Don't assume char is unsigned.
224
225 2011-03-26  John Marino  <binutils@marino.st>
226
227         * configure.host: Update *-*-dragonfly* host entry.
228         * configure.tgt: Update *-*-dragonfly* target entry.
229         * ldlex.l: Prevent redefinition of YY_NO_UNPUT.
230
231 2011-03-28  Joseph Myers  <joseph@codesourcery.com>
232
233         * configure.in: Check for windows.h, not Windows.h.
234         * configure: Regenerate.
235         * plugin.c: Include windows.h, not Windows.h.
236
237 2011-03-25  Eric B. Weddington  <eric.weddington@atmel.com>
238
239         * Makefile.in: Regenerate.
240
241 2011-03-23  Joseph Myers  <joseph@codesourcery.com>
242
243         * lexsup.c (parse_args): Only set report_plugin_symbols if plugins
244         are enabled.  Mark level as possibly unused.
245
246 2011-03-22  Eric B. Weddington  <eric.weddington@atmel.com>
247
248         * Makefile.am (ALL_EMULATION_SOURCES): Add AVR XMEGA architectures.
249         (eavrxmega?.c): Likewise.
250         * configure.tgt (targ_extra_emuls): Likewise.
251         * emulparams/avrxmega1.sh: New file.
252         * emulparams/avrxmega2.sh: Likewise.
253         * emulparams/avrxmega3.sh: Likewise.
254         * emulparams/avrxmega4.sh: Likewise.
255         * emulparams/avrxmega5.sh: Likewise.
256         * emulparams/avrxmega6.sh: Likewise.
257         * emulparams/avrxmega7.sh: Likewise.
258         * emultempl/avrelf.em (avr_elf_${EMULATION_NAME}_before_allocation):
259         Add avrxmega6, avrxmega7 to list of architectures for no stubs.
260
261 2011-03-21  Eric B. Weddington  <eric.weddington@atmel.com>
262
263         * scripttempl/avr.sc: Add fuse, lock, and signature memory regions.
264
265 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
266
267         * emultempl/armelf.em (gld${EMULATION_NAME}_finish): Check
268         eh->target_internal.
269
270 2011-03-14  Richard Sandiford  <richard.sandiford@linaro.org>
271
272         * emultempl/armelf.em (arm_elf_before_allocation): Check dynobj
273         instead of dynamic_sections_created.
274
275 2011-03-10  Dave Korn  <dave.korn.cygwin@gmail.com>
276
277         * plugin.c (get_symbols): Use wrapped lookup for undefined symbols.
278
279 2011-03-10  Dave Korn  <dave.korn.cygwin@gmail.com>
280
281         * ldlang.c (lang_check): Don't run checks on dummy IR BFDs.
282
283 2011-03-10  Dave Korn  <dave.korn.cygwin@gmail.com>
284
285         * ldlang.h (lang_input_statement_type): Add new 'claim_archive' flag,
286         wrapping both it and 'claim' flag in #ifdef ENABLE_PLUGINS.
287         * ldmain.c (add_archive_element): Set it if the member is claimed.
288         * ldlang.c (new_afile): Initialise claim_archive and claimed members.
289         (find_replacements_insert_point): New helper function.
290         (lang_process): After adding and opening replacement files passed
291         from plugin, splice them into correct place in statement list and
292         file chains to preserve critical link order.
293         (lang_list_insert_after): New helper function.
294         (lang_list_remove_tail): Likewise.
295
296 2011-03-10  Dave Korn  <dave.korn.cygwin@gmail.com>
297
298         * plugin.c (IRONLY_SUFFIX): Revise to nicely human-readable form.
299         (IRONLY_SUFFIX_LEN): Delete.
300         (plugin_get_ir_dummy_bfd): Don't append IRONLY_SUFFIX.
301         (is_ir_dummy_bfd): Don't look for suffix; check claimed flag of
302         enclosing lang input statement instead.
303
304 2011-03-10  Dave Korn  <dave.korn.cygwin@gmail.com>
305
306         * emultempl/pe.em (gld_${EMULATION_NAME}_place_orphan): Preserve
307         alignment of input sections when creating orphan output sections
308         during relocatable link.
309         * emultempl/pep.em (gld_${EMULATION_NAME}_place_orphan): Likewise.
310
311 2011-03-04  H.J. Lu  <hongjiu.lu@intel.com>
312
313         * ld.texinfo: Document --verbose[=NUMBER].
314
315         * lexsup.c (ld_options): Update --verbose.
316         (parse_args): Set report_plugin_symbols.
317
318         * plugin.c (report_plugin_symbols): New.
319         (get_symbols): Report plugin symbols if report_plugin_symbols
320         is TRUE.
321
322         * plugin.h (report_plugin_symbols): New.
323
324 2011-03-01  H.J. Lu  <hongjiu.lu@intel.com>
325
326         PR ld/12529
327         * testplug.c: Don't include "filenames.h".
328         (onclaim_file): Don't use filename_cmp.
329
330 2011-02-28  Kai Tietz  <kai.tietz@onevision.com>
331
332         * emultempl/beos.em (sort_by_file_name): Use filename_(n)cmp.
333         * emultempl/elf32.em (gld${EMULATION_NAME}_vercheck):
334         Likewise.
335         (gld${EMULATION_NAME}_stat_needed): Likewise.
336         (gld${EMULATION_NAME}_check_needed): Likewise.
337         * emultempl/pe.em (gld_${EMULATION_NAME}_after_open): Likewise.
338         (gld_${EMULATION_NAME}_unrecognized_file): Likewise.
339         * emultempl/pep.em (gld_${EMULATION_NAME}_after_open): Likewise.
340         (gld_${EMULATION_NAME}_unrecognized_file): Likewise.
341         * ldfile.c (ldfile_open_file): Likewise.
342         * ldlang.c (wild_sort): Likewise.
343         (lookup_name): Likewise.
344         (check_excluded_libs): Likewise.
345         * ldmisc.c (vfinfo): Likewise.
346         * pe-dll.c (libnamencmp): Likewise.
347         (auto_export): Likewise.
348         (pe_dll_generate_implib): Likewise.
349         * testplug.c (onclaim_file): Likewise.
350
351 2011-02-24  H.J. Lu  <hongjiu.lu@intel.com>
352
353         PR ld/12507
354         * plugin.c (get_symbols): Don't check entry symbol here.
355         (init_non_ironly_hash): Add entry_symbol chain into
356         non_ironly_hash.
357
358 2011-02-24  H.J. Lu  <hongjiu.lu@intel.com>
359
360         PR ld/12507
361         * plugin.c (get_symbols): Don't mark entry symbol IR only.
362
363 2011-02-18  John David Anglin  <dave.anglin@nrc-cnnrc.gc.ca>
364
365         PR ld/12376
366         emulparams/hppalinux.sh (DATA_ADDR): Define.
367         (SHLIB_DATA_ADDR): Likewise.
368
369 2011-02-16  H.J. Lu  <hongjiu.lu@intel.com>
370
371         * emulparams/elf32_x86_64.sh (LIBPATH_SUFFIX): Changed to
372         x32 for x32.
373
374 2011-02-15  Kai Tietz  <kai.tietz@onevision.com>
375
376         * pe-dll.c (process_def_file_and_drectve): Don't strip
377         leading underscore from symbol by calling bfd_find_version_for_sym.
378
379 2011-02-14  Mike Frysinger  <vapier@gentoo.org>
380
381         * ldlang.c (lang_vers_match): Declare a new c_sym, assign it to
382         the bfd_demangle of sym, change users of sym to c_sym when not
383         already demangling, and free when done.  Change callers of
384         cplus_demangle to bfd_demangle.
385
386 2011-02-14  Alan Modra  <amodra@gmail.com>
387
388         * plugin.c (plugin_get_ir_dummy_bfd): Set SEC_EXCLUDE on dummy
389         .text section, use newer bfd_make_section variant.  Error handling.
390         Correct setting of gp size.
391         (asymbol_from_plugin_symbol): Properly cast last arg of concat.
392         (message): Likewise for ACONCAT.
393         (get_symbols): Formatting.
394
395 2011-02-14  Alan Modra  <amodra@gmail.com>
396
397         * ldmain.c (remove_output): Rename to..
398         (ld_cleanup): ..this. Call bfd_cache_close_all and plugin_call_cleanup.
399         (main): Adjust.
400         * plugin.c (plugin_call_cleanup): Make global.
401         (plugin_load_plugins): Don't register plugin_call_cleanup with xatexit.
402         * plugin.h (plugin_call_cleanup): Declare.
403
404 2011-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
405
406         * configure: Regenerate.
407
408 2011-02-10  Alan Modra  <amodra@gmail.com>
409
410         * scripttempl/armbpabi.sc: Revert 2010-11-02  H.J. Lu.
411         * scripttempl/avr.sc: Likewise.
412         * scripttempl/elf32cr16.sc: Likewise.
413         * scripttempl/elf32crx.sc: Likewise.
414         * scripttempl/elf32msp430.sc: Likewise.
415         * scripttempl/elf32msp430_3.sc: Likewise.
416         * scripttempl/elf32sh-symbian.sc: Likewise.
417         * scripttempl/elf64hppa.sc: Likewise.
418         * scripttempl/elf_chaos.sc: Likewise.
419         * scripttempl/elfd10v.sc: Likewise.
420         * scripttempl/elfd30v.sc: Likewise.
421         * scripttempl/elfi370.sc: Likewise.
422         * scripttempl/elfm68hc11.sc: Likewise.
423         * scripttempl/elfm68hc12.sc: Likewise.
424         * scripttempl/elfxtensa.sc: Likewise.
425         * scripttempl/ip2k.sc: Likewise.
426         * scripttempl/iq2000.sc: Likewise.
427         * scripttempl/mep.sc: Likewise.
428         * scripttempl/mmo.sc: Likewise.
429         * scripttempl/v850.sc: Likewise.
430         * scripttempl/xstormy16.sc: Likewise.
431         * scripttempl/elf.sc: Revert 2010-10-29  H.J. Lu.
432
433 2011-01-22  H.J. Lu  <hongjiu.lu@intel.com>
434
435         * Makefile.am (CXX): Removed.
436
437         * configure.in: Add AC_PROG_CXX.
438
439         * Makefile.in: Regenerated.
440         * configure: Likewise.
441
442 2011-01-22  Richard Sandiford  <rdsandiford@googlemail.com>
443
444         * plugin.c (plugin_get_ir_dummy_bfd): Copy across the bfd's
445         private data and GP size.
446
447 2011-01-21  Alan Modra  <amodra@gmail.com>
448
449         * ldexp.c (fold_binary): Set result section for arithmetic and
450         logical operations to NULL when both operands are in same section.
451         * ld.texinfo (Expression Section): Describe this.
452
453 2011-01-14  Alan Modra  <amodra@gmail.com>
454
455         * emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
456         attempt to put non-alloc orphans before debug sections, just place
457         them after .comment.
458
459 2011-01-14  J. Park  <grassman@gmail.com>
460
461         PR ld/12339
462         * ldlang.c (sort_def_symbol): Handle bfd_link_hash_warning symbols.
463
464 2011-01-14  Alan Modra  <amodra@gmail.com>
465
466         * Makefile.am: Sort emulation rules.
467         (eelf32am33lin.c): Delete.
468         (ALL_EMULATION_SOURCES): Sort, add missing entries.
469         (ALL_64_EMULATION_SOURCES): Likewise.
470         * Makefile.in: Regenerate.
471
472 2011-01-13  Alan Modra  <amodra@gmail.com>
473
474         PR ld/12356
475         * ld.texinfo (Miscellaneous Commands): Describe LD_FEATURE.
476         (Expression Section): Update.
477         * ld.h (ld_config_type): Add sane_expr.
478         * ldgram.y (ifile_p1): Add LD_FEATURE.
479         * ldlex.l (LD_FEATYRE): New.
480         * ldemul.c (after_parse_default): Delete code handling ld_compatibility.
481         * ldexp.h (struct ldexp_control): Delete uses_defined.
482         * ldexp.c: Remove all uses of uses_defined.
483         (fold_name): Test config.sane_expr rather than ld_compatibility.
484         (exp_fold_tree_1): Likewise.  Adjust handling of assignments
485         during first phase.
486         * ldlang.h (ld_compatibility): Delete.
487         (lang_ld_feature): Declare.
488         * ldlang.c (ld_compatibility): Delete.
489         (open_input_bfds): Only handle assignments for --defsym.
490         (lang_ld_feature): New function.
491
492         PR ld/12356
493         * ldexp.h (exp_assop): Delete.
494         (exp_assign, exp_defsym): Declare.
495         * ldexp.c (exp_assop): Make static, handle all assignment variations.
496         (exp_assign, exp_defsym): New functions.
497         (exp_provide): Use exp_assop.
498         * ldgram.y (defsym_expr): Use exp_defsym.
499         * ldctor.c, * ldgram.y, * ldlang.c, * mri.c, * emultempl/beos.em,
500         * emultempl/pe.em, * emultempl/pep.em, * emultempl/spuelf.em,
501         * emultempl/xtensaelf.em: Update exp_assop -> exp_assign.
502
503 2011-01-12  Alan Modra  <amodra@gmail.com>
504
505         PR ld/12380
506         * ldexp.h (enum phase_enum): Comment.  Add exp_dataseg_done.
507         * ldexp.c (fold_unary <DATA_SEGMENT_END>): Rearrange code.  Test
508         for exp_dataseg_done rather than expld.phase == lang_final_phase_enum
509         to detect when we've finished sizing sections.
510         (fold_binary <DATA_SEGMENT_ALIGN>): Likewise.
511         (fold_binary <DATA_SEGMENT_RELRO_END>): Likewise.  Also test
512         that we are not inside an output section statement.
513         * ldlang.c (lang_size_sections): Set exp_dataseg_done on exit if
514         not exp_dataseg_relro_adjust or exp_dataseg_adjust.  Don't set
515         lang_final_phase_enum here.
516         (lang_process): Set lang_final_phase_enum here.
517
518 2011-01-10  Nick Clifton  <nickc@redhat.com>
519
520         * po/da.po: Updated Danish translation.
521
522 2011-01-10  H.J. Lu  <hongjiu.lu@intel.com>
523
524         * ldlang.c (startup_file): Removed.
525         (lang_startup): Updated.
526
527 2011-01-05  H.J. Lu  <hongjiu.lu@intel.com>
528
529         PR ld/12364
530         * plugin.c (get_symbols): Check if owner_sec->owner is NULL
531         before accessing its flags field.
532
533 2011-01-01  H.J. Lu  <hongjiu.lu@intel.com>
534
535         * ldver.c (ldversion): Update copyright to 2011.
536
537 For older changes see ChangeLog-2010
538 \f
539 Local Variables:
540 mode: change-log
541 left-margin: 8
542 fill-column: 74
543 version-control: never
544 End: