ChangeLog-2012 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041
  1. 2012-12-18 Roland McGrath <mcgrathr@google.com>
  2. * ld.texinfo (Options): Describe -Trodata-segment.
  3. * ldlex.h (enum option_values): Add OPTION_TRODATA_SEGMENT.
  4. * lexsup.c (ld_options, parse_args): Handle -Trodata-segment.
  5. * scripttempl/elf.sc (RODATA_ADDR, SHLIB_RODATA_ADDR): Wrap
  6. SEGMENT_START("rodata-segment", ...) + SIZEOF_HEADERS around the value.
  7. 2012-12-17 Nick Clifton <nickc@redhat.com>
  8. * MAINTAINERS: Add copyright notice.
  9. * Makefile.am: Likewise.
  10. * NEWS: Likewise.
  11. * README: Likewise.
  12. * configure.host: Likewise.
  13. * configure.in: Likewise.
  14. * gen-doc.texi: Likewise.
  15. * h8-doc.texi: Likewise.
  16. * ldlex-wrapper.c: Likewise.
  17. * emulparams/README: Likewise.
  18. * emultempl/README: Likewise.
  19. * scripttempl/README: Likewise.
  20. * Makefile.in: Regenerate.
  21. 2012-12-17 Alan Modra <amodra@gmail.com>
  22. PR ld/14962
  23. * ldexp.h (struct ldexp_control): Add "assign_name".
  24. * ldexp.c (fold_name <NAME>): Compare and clear assign_name on match.
  25. (exp_fold_tree_1): Remove existing code testing for self assignment.
  26. Instead set and test expld.assign_name.
  27. * ldlang.c (scan_for_self_assignment): Delete.
  28. (print_assignment): Instead set and test expld.assign_name.
  29. 2012-12-11 Roland McGrath <mcgrathr@google.com>
  30. * emulparams/elf_nacl.sh (nacl_rodata_addr): New shell function.
  31. (RODATA_ADDR, SHLIB_RODATA_ADDR): Use it to base the calculation
  32. on SEGMENT_START("text-segment", ...) rather than ... alone.
  33. * Makefile.am (earmelf_nacl.c, earmelfb_nacl.c): Add missing
  34. dependency on $(srcdir)/emulparams/elf_nacl.sh.
  35. * Makefile.in: Regenerate.
  36. 2012-12-05 H.J. Lu <hongjiu.lu@intel.com>
  37. PR ld/14915
  38. * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Also
  39. check DT_NEEDED entries when creating shared object with
  40. --copy-dt-needed-entries.
  41. 2012-12-05 Leif Ekblad <leif@rdos.net>
  42. * configure.tgt: Add x86_64-*-rdos.
  43. 2012-12-03 H.J. Lu <hongjiu.lu@intel.com>
  44. PR ld/14904
  45. * ldmain.c (main): Don't check plugin_load_plugins return.
  46. * lexsup.c (parse_args): Don't check plugin_opt_plugin return.
  47. * plugin.c (dlerror): New. Defined if HAVE_DLFCN_H isn't
  48. defined.
  49. (plugin_opt_plugin): Change return type to void. Stop on
  50. dlopen error and report error with dlerror ().
  51. (plugin_load_plugins): Change return type to void. Stop on
  52. dlsym error and report error with dlerror (). Don't use
  53. set_plugin_error.
  54. (plugin_call_cleanup): Issue an error for each plugin.
  55. * plugin.h (plugin_opt_plugin): Change return type to void.
  56. (plugin_load_plugins): Likewise.
  57. 2012-11-30 Joern Rennecke <joern.rennecke@embecosm.com>
  58. * scripttempl/epiphany_4x4.sc, emulparams/elf32epiphany_4x4.sh: Add.
  59. * emultempl/epiphanyelf_4x4.em: Likewise.
  60. * configure.tgt: Add elf32epiphany_4x4 support.
  61. * Makefile.am: Likewise.
  62. * Makefile.in: Regenerate.
  63. 2012-11-29 Maciej W. Rozycki <macro@codesourcery.com>
  64. * Makefile.in: Regenerate.
  65. 2012-11-27 Nick Clifton <nickc@redhat.com>
  66. PR ld/14776
  67. * ld.texinfo: Fix spelling mistakes.
  68. 2012-11-26 Roland McGrath <mcgrathr@google.com>
  69. * emultempl/aarch64elf.em (gld${EMULATION_NAME}_before_parse):
  70. Copy last elf32.em here too.
  71. * emultempl/armelf.em (gld${EMULATION_NAME}_before_parse): Likewise.
  72. * emultempl/mmixelf.em (gld${EMULATION_NAME}_before_parse): Likewise.
  73. * emultempl/scoreelf.em (gld${EMULATION_NAME}_before_parse): Likewise.
  74. 2012-11-21 Roland McGrath <mcgrathr@google.com>
  75. * ld.h (ld_config_type): New flag member separate_code.
  76. * emultempl/elf32.em
  77. (gld${EMULATION_NAME}_before_parse): Set it based on $SEPARATE_CODE.
  78. * ldlang.c (ldlang_override_segment_assignment): If it's set, then
  79. always return TRUE when SEC_CODE differs between the sections.
  80. 2012-11-20 H.J. Lu <hongjiu.lu@intel.com>
  81. * ld.texinfo: Document "-z global".
  82. * emultempl/elf32.em (gld${EMULATION_NAME}_handle_option): Support
  83. "-z global".
  84. (gld${EMULATION_NAME}_list_options): Likewise.
  85. 2012-11-15 Maxim Kuvyrkov <maxim@codesourcery.com>
  86. Port lib32 arrangement from Debian.
  87. * emulparams/elf_i386.sh: Include lib32 directories in library search
  88. path.
  89. 2012-11-15 Simon Baldwin <simonb@google.com>
  90. * ldmain.c (main): Add start_sbrk set to sbrk(0) on entry.
  91. On exit, compute data size as the delta between current
  92. sbrk(0) and start_sbrk.
  93. 2012-11-09 Nick Clifton <nickc@redhat.com>
  94. * emultempl/rxelf.em (no_flag_mismatch_warnings): Initialise to
  95. true.
  96. (PARSE_AND_LIST_LONGOPTS): Add flag-mismatch-warnings.
  97. (PARSE_AND_LIST_ARG_CASES): Add support for
  98. --flag-mismatch-warnings.
  99. * Makefile.am: (ALL_EMULATION_SOURCES): Add ev850_rh850.c.
  100. * Makefile.in: Regenerate.
  101. * configure.tgt (v850*-*-*): Make v850_rh850 the default
  102. emulation. Add vanilla v850 as an extra emulation.
  103. * emulparams/v850_rh850.sh: New file.
  104. * scripttempl/v850_rh850.sc: New file.
  105. 2012-11-09 Edgar E. Iglesias <edgar.iglesias@gmail.com>
  106. * Makefile.am: Add eelf32microblazeel.c and eelf32mbel_linux.c.
  107. * Makefile.in: Regenerated.
  108. * configure.tgt: Add microblazeel and set endian per target.
  109. * emulparams/elf32mb_linux.sh: Add OUTPUT_FORMAT.
  110. * emulparams/elf32microblaze.sh: Likewise.
  111. * emulparams/elf32mbel_linux.sh: New file.
  112. * emulparams/elf32microblazeel.sh: Likewise.
  113. 2012-11-09 H.J. Lu <hongjiu.lu@intel.com>
  114. * testplug.c (record_add_file): Remove trailing redundant `;'.
  115. 2012-11-05 Alan Modra <amodra@gmail.com>
  116. * configure.in: Apply 2012-09-10 change to config.in here.
  117. 2012-11-01 Nathan Sidwell <nathan@codesourcery.com>
  118. * emultempl/elf32.em: Print stacksize help.
  119. 2012-11-01 Alan Modra <amodra@gmail.com>
  120. * ldlang.c (insert_pad): Correct output section size calculation.
  121. (lang_size_sections_1): Likewise for lang_data_statement and
  122. lang_reloc_statement.
  123. 2012-10-29 Alan Modra <amodra@gmail.com>
  124. * configure.tgt (powerpcle-pe,winnt,cygwin): Add deffilep.o
  125. and pe-dll.o.
  126. 2012-10-24 H.J. Lu <hongjiu.lu@intel.com>
  127. * ld.h (command_line): Remove
  128. disable_target_specific_optimizations.
  129. (RELAXATION_DISABLED_BY_DEFAULT): Removed.
  130. (RELAXATION_DISABLED_BY_USER): Likewise.
  131. (RELAXATION_ENABLED): Likewise.
  132. (DISABLE_RELAXATION): Likewise.
  133. (ENABLE_RELAXATION): Likewise.
  134. * ldmain.c (main): Updated.
  135. * ldmain.h (RELAXATION_DISABLED_BY_DEFAULT): New macro.
  136. (RELAXATION_DISABLED_BY_USER): Likewise.
  137. (RELAXATION_ENABLED): Likewise.
  138. (DISABLE_RELAXATION): Likewise.
  139. (ENABLE_RELAXATION): Likewise.
  140. 2012-10-23 Nathan Sidwell <nathan@codesourcery.com>
  141. * ld.texinfo (stack-size): New option.
  142. * emultempl/elf32.em: Add stack-size option.
  143. 2012-10-22 Jan Beich <jbeich@tormail.org>
  144. Alan Modra <amodra@gmail.com>
  145. PR ld/14426
  146. * ldlex.h (option_values): Add OPTION_IGNORE_UNRESOLVED_SYMBOL.
  147. * lexsup.c (parse_args): Likewise.
  148. (ld_options): Describe --ignore-unresolved-symbol.
  149. * ldmain.h (add_ignoresym): Declare.
  150. * ldmain.c (add_ignoresym): New function, extracted from..
  151. (undefined_symbol): ..here. Return if the symbol is in ignore_hash.
  152. (constructor_callback): Don't use global link_info here.
  153. (reloc_overflow): Likewise.
  154. 2012-10-22 Alan Modra <amodra@gmail.com>
  155. * plugin.c (plugin_load_plugins): Warning fix.
  156. 2012-10-18 Kai Tietz <ktietz@redhat.com>
  157. PR binutils/14067
  158. * NEWS: Menition new feature.
  159. * scripttempl/pep.sc: Add zdebug sections.
  160. * scripttempl/pe.sc: L
  161. 2012-09-19 Steve Ellcey <sellcey@mips.com>
  162. * configure.tgt: Add mips*-mti-elf* target.
  163. 2012-09-17 Alan Modra <amodra@gmail.com>
  164. * ld.texinfo (Expression Section): Correct description of
  165. conversions for a binary operation involving an absolute symbol
  166. and a number.
  167. 2012-09-14 David Edelsohn <dje.gcc@gmail.com>
  168. * configure: Regenerate.
  169. 2012-09-13 Anthony Green <green@moxielogic.com>
  170. * emulparams/elf32moxie.sh (BIG_OUTPUT_FORMAT,
  171. LITTLE_OUTPUT_FORMAT): Define.
  172. (OUTPUT_FORMAT): Change to elf32-bigmoxie.
  173. (EMBEDDED): Define.
  174. 2012-09-12 DJ Delorie <dj@redhat.com>
  175. * emulparams/elf32rx.sh (OTHER_READONLY_SECTIONS): Add W_* sections.
  176. 2012-09-10 Matthias Klose <doko@ubuntu.com>
  177. * config.in: Disable sanity check for kfreebsd.
  178. 2012-09-10 H.J. Lu <hongjiu.lu@intel.com>
  179. * configure: Regenerated.
  180. 2012-09-10 Iain Sandoe <iain@codesourcery.com>
  181. Alan Modra <amodra@gmail.com>
  182. * configure.tgt (powerpc-*-elf, et al): Define targ_extra_libpath.
  183. Correct whitespace.
  184. (powerpcle-*-elf, et al): Likewise. Correct targ_extra_emuls.
  185. 2012-09-10 Iain Sandoe <iain@codesourcery.com>
  186. * configure.tgt (powerpc-*-elf, et al): Define targ64_extra_emuls
  187. and targ64_extra_libpath.
  188. (powerpcle-*-elf, et al): Likewise.
  189. 2012-09-09 Hans-Peter Nilsson <hp@bitrange.com>
  190. * emultempl/mmo.em (mmo_place_orphan): Rewrite to also attach
  191. orphan sections to .data and .bss output sections, not just .text.
  192. When giving up on finding a suitable output section, attach to any
  193. output section other than .MMIX.reg_contents, if it exists.
  194. * scripttempl/mmo.sc: Move output debug sections to just before
  195. .MMIX.reg_contents. Add .gnu.attributes. Add new . = . NOP
  196. assignments and move end-of-section provide-symbols after them
  197. to force the end-of-section symbols to the address after orphan
  198. placement. Add SORT_NONE to .init and .fini sections.
  199. 2012-08-30 H.J. Lu <hongjiu.lu@intel.com>
  200. PR ld/14525
  201. * scripttempl/elf.sc: Also provide __executable_start for PIE.
  202. 2012-08-17 Kai Tietz <ktietz@redhat.com>
  203. PR ld/14326
  204. * scripttempl/pe.sc: Add _etext symbol.
  205. 2012-08-14 Nick Clifton <nickc@redhat.com>
  206. * configure.in (ALL_LINGUGAS): Add uk.
  207. * configure: Regenerate.
  208. * po/uk.po: New Ukranian translation.
  209. 2012-08-13 Ian Bolton <ian.bolton@arm.com>
  210. Laurent Desnogues <laurent.desnogues@arm.com>
  211. Jim MacArthur <jim.macarthur@arm.com>
  212. Marcus Shawcroft <marcus.shawcroft@arm.com>
  213. Nigel Stephens <nigel.stephens@arm.com>
  214. Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
  215. Richard Earnshaw <rearnsha@arm.com>
  216. Sofiane Naci <sofiane.naci@arm.com>
  217. Tejas Belagod <tejas.belagod@arm.com>
  218. Yufeng Zhang <yufeng.zhang@arm.com>
  219. * Makefile.am: Add AArch64.
  220. * Makefile.in: Regenerate.
  221. * configure.tgt: Add AArch64.
  222. * emulparams/aarch64elf.sh: New file.
  223. * emulparams/aarch64elfb.sh: New file.
  224. * emulparams/aarch64linux.sh: New file.
  225. * emulparams/aarch64linuxb.sh: New file.
  226. * emultempl/aarch64elf.em: New file.
  227. * NEWS: Mention the new feature.
  228. 2012-08-09 Nick Clifton <nickc@redhat.com>
  229. * po/vi.po: Updated Vietnamese translation.
  230. 2012-08-07 Daniel Green <venix1@gmail.com>
  231. * scripttempl/pe.sc (R_TLS): Add .tls$AAA and .tls$ZZZ.
  232. * scripttempl/pep.sc (R_TLS): Add .tls$AAA and .tls$ZZZ.
  233. 2012-08-07 Nick Clifton <nickc@redhat.com>
  234. * po/ja.po: Updated Japanese translation.
  235. 2012-08-06 Maciej W. Rozycki <macro@codesourcery.com>
  236. * emulparams/elf32bmip.sh: Make _gp hidden.
  237. * emulparams/elf32bmipn32-defs.sh: Likewise.
  238. * emulparams/elf32mipswindiss.sh: Likewise.
  239. * scripttempl/mips.sc: Likewise.
  240. 2012-08-06 Maciej W. Rozycki <macro@codesourcery.com>
  241. * ldexp.h (etree_union): Add defsym member to the assign member
  242. structure.
  243. (exp_assign): Add hidden argument to prototype.
  244. * ldexp.c (exp_fold_tree_1): Use the defsym member to handle
  245. --defsym symbols.
  246. (exp_assop): Add defsym argument, initialize the defsym member
  247. of the assign structure.
  248. (exp_assign): Handle hidden symbols.
  249. (exp_defsym): Update to use the defsym argument to exp_assop.
  250. (exp_provide): Update to handle the defsym argument to exp_assop.
  251. * ldlex.l (HIDDEN): New token.
  252. * ldgram.y (HIDDEN): Likewise.
  253. (assignment, section): Update calls to exp_assign.
  254. * ldctor.c (ldctor_build_sets): Likewise.
  255. * mri.c (mri_format): Likewise.
  256. * ldlang.c (lang_insert_orphan, lang_leave_overlay): Likewise.
  257. (open_input_bfds): Remove --defsym symbols special case.
  258. * emultempl/beos.em (gld_${EMULATION_NAME}_set_symbols): Update
  259. call to exp_assign.
  260. * emultempl/pe.em (gld_${EMULATION_NAME}_set_symbols): Likewise.
  261. * emultempl/pep.em (gld_${EMULATION_NAME}_set_symbols): Likewise.
  262. * emultempl/spuelf.em (spu_place_special_section): Likewise.
  263. * emultempl/xtensaelf.em (ld_xtensa_insert_page_offsets):
  264. Likewise.
  265. * ld.texinfo (Assigning Values to Symbols): Add HIDDEN.
  266. (HIDDEN): New subsection.
  267. 2012-07-31 H.J. Lu <hongjiu.lu@intel.com>
  268. PR ld/14156
  269. * ldlang.c (wild_sort): Properly handle by_none.
  270. * scripttempl/elf.sc: Add SORT_NONE to .init and .fini sections.
  271. * scripttempl/elf32msp430.sc: Likewise.
  272. * scripttempl/elf32msp430_3.sc: Likewise.
  273. * scripttempl/elfd10v.sc: Likewise.
  274. * scripttempl/elfd30v.sc: Likewise.
  275. * scripttempl/elfxtensa.sc: Likewise.
  276. 2012-07-30 Nick Clifton <nickc@redhat.com>
  277. * po/ld.pot: Updated template.
  278. * po/bg.po: Updated Bulgarian translation.
  279. * po/es.po: Updated Spanish translation.
  280. * po/fi.po: Updated Finnish translation.
  281. 2012-07-27 Mike Frysinger <vapier@gentoo.org>
  282. * configure.in (BFD_VERSION): Run bfd/configure --version and
  283. parse the output of that.
  284. * configure: Regenerate.
  285. 2012-07-27 Tristan Gingold <gingold@adacore.com>
  286. * NEWS: Add marker for 2.23.
  287. 2012-07-24 Jan Waclawek <konfera@efton.sk>
  288. PR ld/14058
  289. * emultempl/avrelf.em (avr_elf_after_allocation): Call
  290. elf32_avr_size_stubs with is_prealloc_run as TRUE.
  291. 2012-07-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
  292. * emulparams/elf_s390.sh (IREL_IN_PLT): Define.
  293. * emulparams/elf64_s390.sh (IREL_IN_PLT): Define.
  294. 2012-07-13 Nick Clifton <nickc@redhat.com>
  295. PR ld/14357
  296. * ldmain.c (trace_file_tries): Rename to 'verbose'.
  297. * ldfile.c: Likewise.
  298. * ldlang.c: Likewise.
  299. * ldmain.h: Likewise.
  300. * lexsup.c: Likewise.
  301. * emultempl/elf32.em: Likewise.
  302. * emultemp/spuelf.em: Likewise.
  303. * pe-dll.c (pe_dll_generate_implib): Only print creation message
  304. in verbose mode.
  305. 2012-07-10 H.J. Lu <hongjiu.lu@intel.com>
  306. PR ld/14156
  307. * NEWS: Mention SORT_NONE.
  308. * ld.h (sort_type): Add by_none.
  309. * ld.texinfo: Document SORT_NONE.
  310. * ldgram.y: Handle SORT_NONE.
  311. * ldlang.c (update_wild_statements): Handle by_none. Don't
  312. sort .init/.fini sections.
  313. * ldlex.l: Add SORT_NONE.
  314. 2012-07-02 H.J. Lu <hongjiu.lu@intel.com>
  315. * ld.texinfo: Replace __end_SECNAME with __stop_SECNAME.
  316. 2012-06-29 Nick Clifton <nickc@redhat.com>
  317. * scripttempl/alphavms.sc: Add .debug_macro section.
  318. * scripttempl/elf.sc: Likewise.
  319. * scripttempl/elf64hppa.sc: Likewise.
  320. * scripttempl/elf_chaos.sc: Likewise.
  321. * scripttempl/elfxtensa.sc: Likewise.
  322. * scripttempl/ia64vms.sc: Likewise.
  323. * scripttempl/armbpabi.sc: Add .debug_pubtypes, .debug_ranges and
  324. .debug_macro sections.
  325. * scripttempl/avr.sc: Likewise.
  326. * scripttempl/elf32cr16.sc: Likewise.
  327. * scripttempl/elf32crx.sc: Likewise.
  328. * scripttempl/elf32msp430.sc: Likewise.
  329. * scripttempl/elf32msp430_3.sc: Likewise.
  330. * scripttempl/elf32sh-symbian.sc: Likewise.
  331. * scripttempl/elfd30v.sc: Likewise.
  332. * scripttempl/elfi370.sc: Likewise.
  333. * scripttempl/elfm68hc11.sc: Likewise.
  334. * scripttempl/elfm68hc12.sc: Likewise.
  335. * scripttempl/elfxgate.sc: Likewise.
  336. * scripttempl/i386beos.sc: Likewise.
  337. * scripttempl/i386go32.sc: Likewise.
  338. * scripttempl/ip2k.sc: Likewise.
  339. * scripttempl/iq2000.sc: Likewise.
  340. * scripttempl/mep.sc: Likewise.
  341. * scripttempl/mmo.sc: Likewise.
  342. * scripttempl/v850.sc: Likewise.
  343. * scripttempl/xstormy16.sc: Likewise.
  344. 2012-06-28 H.J. Lu <hongjiu.lu@intel.com>
  345. * ldlang.c (update_wild_statements): Remove redundant statement.
  346. 2012-06-25 Alan Modra <amodra@gmail.com>
  347. * ldlang.c (load_symbols): Close file and set flags.loaded
  348. after parsing script file.
  349. (open_input_bfds): Don't segv on closed script.
  350. 2012-06-24 H.J. Lu <hongjiu.lu@intel.com>
  351. * configure.tgt: Enable elf_k1om for x86_64-*-linux-gnux32.
  352. Remove x32 in tdir_i386linux and tdir_elf_i386.
  353. 2012-06-22 Roland McGrath <mcgrathr@google.com>
  354. * NEWS: Mention __ehdr_start.
  355. 2012-06-21 Alan Modra <amodra@gmail.com>
  356. * ldlang.c (lang_insert_orphan): Don't make __start_<sec> symbol
  357. absolute, and remove unnecessary alignment.
  358. 2012-06-16 Alan Modra <amodra@gmail.com>
  359. * ldlang.h (lang_output_section_statement_type): Add after_end field.
  360. (lang_abs_symbol_at_beginning_of, lang_abs_symbol_at_end_of): Delete.
  361. (section_for_dot): Declare.
  362. * ldlang.c (lang_size_sections_1): Correct comment.
  363. (current_section): Move earlier.
  364. (current_assign, prefer_next_section): New static vars.
  365. (lang_do_assignments_1): Add found_end param. Detect _end
  366. assignment to set found_end. Set os->after_end. Set above statics.
  367. (lang_do_assignments): Adjust lang_do_assignments_1 call. Init
  368. vars.
  369. (section_for_dot): New function.
  370. (lang_set_startof): Don't make an absolute symbol.
  371. (lang_abs_symbol_at_beginning_of, lang_abs_symbol_at_end_of): Delete.
  372. * ldexp.c (new_rel_from_abs): Use section_for_dot.
  373. * emultempl/lnk960.em (symbol_at_beginning_of): New function.
  374. (symbol_at_end_of): Likewise.
  375. (lnk960_after_allocation): Use them.
  376. * scripttempl/elf.sc: Precede OTHER_GOT_SYMBOLS with . = .; and
  377. likewise before __bss_start.
  378. 2012-06-14 H.J. Lu <hongjiu.lu@intel.com>
  379. * plugin.c (set_tv_header): Handle link_info.pie.
  380. 2012-06-11 Alan Modra <amodra@gmail.com>
  381. PR ld/14215
  382. * ldexp.c (fold_name <SIZEOF, ALIGNOF>): Allow forward section
  383. references.
  384. * emulparams/elf32_x86_64.sh (SEPARATE_GOTPLT): Depend on size of
  385. .got.plt.
  386. * emulparams/elf32mb_linux.sh (SEPARATE_GOTPLT): Likewise.
  387. * emulparams/elf32tilegx.sh (SEPARATE_GOTPLT): Likewise.
  388. * emulparams/elf32tilepro.sh (SEPARATE_GOTPLT): Likewise.
  389. * emulparams/elf64tilegx.sh (SEPARATE_GOTPLT): Likewise.
  390. * emulparams/elf_i386.sh (SEPARATE_GOTPLT): Likewise.
  391. * emulparams/elf_k1om.sh (SEPARATE_GOTPLT): Likewise.
  392. * emulparams/elf_l1om.sh (SEPARATE_GOTPLT): Likewise.
  393. * emulparams/elf_x86_64.sh (SEPARATE_GOTPLT): Likewise.
  394. 2012-06-07 Georg-Johann Lay <avr@gjlay.de>
  395. PR 13697
  396. * scripttempl/avr.sc (.data): Keep it.
  397. 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
  398. * Makefile.am (TEXINFO_TEX): Remove $(top_srcdir) prefix.
  399. * Makefile.in: Regenerate.
  400. 2012-05-30 Alan Modra <amodra@gmail.com>
  401. * ldlang.h (lang_output_section_statement_type): Rename
  402. "section_relative_symbol" field to "update_dot".
  403. * ldlang.c: Update all uses.
  404. (strip_excluded_output_sections): Don't test update_dot_tree here..
  405. (lang_leave_overlay): ..set update_dot here.
  406. 2012-05-26 Alan Modra <amodra@gmail.com>
  407. * ldlex.h (enum option_values): Move from..
  408. * lexsup.c: ..here.
  409. * emultempl/ppc32elf.em: Include ldlex.h.
  410. (PARSE_AND_LIST_ARGS_CASES): Disable optimisations when
  411. --traditional-format.
  412. * emultempl/ppc64elf.em: Likewise.
  413. 2012-05-25 Alan Modra <amodra@gmail.com>
  414. PR ld/13909
  415. * emultempl/elf32.em (gld${EMULATION_NAME}_after_open): Handle
  416. multiple .eh_frame sections attached to bfd.
  417. 2012-05-23 Cary Coutant <ccoutant@google.com>
  418. * scripttempl/armbpabi.sc: Match .data.rel.ro.* sections more
  419. carefully. Fix typo where .rela.data.rel.ro matches
  420. .rel.data.rel.ro.
  421. * scripttempl/mep.sc: Likewise.
  422. * scripttempl/elf.sc: Match .data.rel.ro.* sections more carefully.
  423. * scripttempl/elf64hppa.sc: Likewise.
  424. * scripttempl/elfxtensa.sc: Likewise.
  425. 2012-05-17 Daniel Richard G. <skunk@iskunk.org>
  426. Nick Clifton <nickc@redhat.com>
  427. PR 14072
  428. * configure.in: Add check that sysdep.h has been included before
  429. any system header files.
  430. * configure: Regenerate.
  431. * config.in: Regenerate.
  432. * sysdep.h: Generate an error if included before config.h.
  433. 2012-05-16 Sergio Durigan Junior <sergiodj@redhat.com>
  434. * emultempl/m68hc1xelf.em (hook_in_stub): Pass proper `bfd'
  435. as the first argument for `bfd_get_section_name'.
  436. 2012-05-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
  437. PR ld/14069
  438. * emultempl/elf32.em: Include *-*-gnu* targets in ld.so.conf
  439. support.
  440. 2012-05-15 James Murray <jsm@jsm-net.demon.co.uk>
  441. * NEWS: Mention the support for S12X processors.
  442. 2012-05-14 James Lemke <jwlemke@codesourcery.com>
  443. * ldlang.c (walk_wild_consider_section): Don't copy section_flag_list.
  444. Pass it to callback.
  445. (walk_wild_section_general): Pass section_flag_list to callback.
  446. (lang_add_section): Add sflag_list parm.
  447. Move out logic to keep / omit a section & call bfd_lookup_section_flags.
  448. (output_section_callback_fast): Add sflag_list parm.
  449. Add new parm to lang_add_section calls.
  450. (output_section_callback): Likewise.
  451. (check_section_callback): Add sflag_list parm.
  452. (lang_place_orphans): Add new parm to lang_add_section calls.
  453. (gc_section_callback): Add sflag_list parm.
  454. (find_relro_section_callback): Likewise.
  455. * ldlang.h (callback_t): Add flag_info parm.
  456. (lang_add_section): Add sflag_list parm.
  457. * emultempl/armelf.em (elf32_arm_add_stub_section):
  458. Add lang_add_section parm.
  459. * emultempl/beos.em (gld*_place_orphan): Likewise.
  460. * emultempl/elf32.em (gld*_place_orphan): Likewise.
  461. * emultempl/hppaelf.em (hppaelf_add_stub_section): Likewise.
  462. * emultempl/m68hc1xelf.em (m68hc11elf_add_stub_section): Likewise.
  463. * emultempl/mipself.em (mips_add_stub_section): Likewise.
  464. * emultempl/mmo.em (mmo_place_orphan): Likewise.
  465. * emultempl/pe.em (gld_*_place_orphan): Likewise.
  466. * emultempl/pep.em (gld_*_place_orphan): Likewise.
  467. * emultempl/ppc64elf.em (ppc_add_stub_section): Likewise.
  468. * emultempl/spuelf.em (spu_place_special_section): Likewise.
  469. * emultempl/vms.em (vms_place_orphan): Likewise.
  470. 2012-05-14 Catherine Moore <clm@codesourcery.com>
  471. * NEWS: Mention PowerPC VLE port.
  472. 2012-05-11 Daniel Richard G. <skunk@iskunk.org>
  473. PR binutils/14028
  474. * configure.in: Invoke ACX_HEADER_STRING.
  475. * configure: Regenerate.
  476. * config.in: Regenerate.
  477. * sysdep.h: If STRINGS_WITH_STRING is defined then include both
  478. string.h and strings.h.
  479. 2012-05-08 Alan Modra <amodra@gmail.com>
  480. * Makefile.am (check_DEJAGNU): Export LC_ALL=C in place of other
  481. LC and LANG environment vars.
  482. * Makefile.in: Regenerate.
  483. 2012-05-07 Tristan Gingold <gingold@adacore.com>
  484. * pe-dll.c (udef_table): Make it static.
  485. 2012-05-05 Alan Modra <amodra@gmail.com>
  486. * pe-dll.c (process_def_file_and_drectve): Use bfd_und_section_ptr.
  487. (generate_reloc): Use bfd_abs_section_ptr.
  488. 2012-05-04 H.J. Lu <hongjiu.lu@intel.com>
  489. * configure.tgt: Support x86_64-*-linux-gnux32.
  490. 2012-05-03 Sean Keys <skeys@ipdatasys.com>
  491. * Makefile.am (ALL_EMULATIONS): Added new emulation for XGATE
  492. and XGATE (elf).
  493. * Makefile.in: Rebuild.
  494. * configure.tgt: Recognize XGATE.
  495. * scripttempl/elfxgate.sc: New file, mostly cloned from m68hc12.
  496. * emulparams/xgateelf: New emulation, mostly cloned from m68hc12.
  497. * NEWS: Mention new support.
  498. 2012-04-26 Hans-Peter Nilsson <hp@axis.com>
  499. Make bfd asserts cause linker errors.
  500. * ldmain.c (default_bfd_assert_handler): New variable.
  501. (ld_bfd_assert_handler): New function.
  502. (main): Call bfd_set_assert_handler.
  503. 2012-04-24 Alan Modra <amodra@gmail.com>
  504. * ldlang.c (size_input_section): Use sec_info_type rather than
  505. usrdata->flags.just_syms.
  506. * ldwrite.c (build_link_order): Likewise.
  507. * emultempl/hppaelf.em (build_section_lists): Likewise.
  508. * emultempl/ppc64elf.em (build_toc_list): Likewise.
  509. * emultempl/armelf.em (build_section_lists): Likewise.
  510. (after_allocation): Update for renamed sec_info_type value.
  511. * emultempl/tic6xdsbt.em: Likewise.
  512. 2012-04-12 Roland McGrath <mcgrathr@google.com>
  513. * configure.tgt (arm*-*-nacl*, arm*b-*-nacl*): Handle them.
  514. * emulparams/armelf_nacl.sh: New file.
  515. * emulparams/armelfb_nacl.sh: New file.
  516. * Makefile.am (ALL_EMULATION_SOURCES): Add earmelf_nacl.c
  517. and earmelfb_nacl.c here.
  518. (earmelf_nacl.c, earmelfb_nacl.c): New targets.
  519. * Makefile.in: Regenerated.
  520. 2012-04-11 Tristan Gingold <gingold@adacore.com>
  521. * scripttempl/ia64vms.sc: New file.
  522. * emultempl/vms.em (_before_parse): Support for ia64.
  523. (elf64-ia64-vms): New fragment for ia64.
  524. * emulparams/elf64_ia64_vms.sh: New file.
  525. * configure.tgt (ia64-*-*vms*): Add.
  526. * Makefile.am (ALL_64_EMULATION_SOURCES): Add eelf64_ia64_vms.c
  527. (eelf64_ia64_vms.c): New rule.
  528. * Makefile.in: Regenerate.
  529. 2012-04-06 Roland McGrath <mcgrathr@google.com>
  530. * configure.in (AC_CHECK_HEADERS): Add locale.h.
  531. * config.in: Regenerate.
  532. * configure: Regenerate.
  533. 2012-04-05 Nick Clifton <nickc@redhat.com>
  534. * configure.in (AC_CHECK_FUNCS): Add setlocale.
  535. (AM_LC_MESSAGES): Add.
  536. * aclocal.m4: Regenerate.
  537. * config.in: Regenerate.
  538. * configure: Regenerate.
  539. 2012-04-03 Roland McGrath <mcgrathr@google.com>
  540. * configure.tgt (i[3-7]86-*-nacl*, x86_64-*-nacl*): Handle them.
  541. * emulparams/elf_nacl.sh: New file.
  542. * emulparams/elf_i386_nacl.sh: New file.
  543. * emulparams/elf32_x86_64_nacl.sh: New file.
  544. * emulparams/elf_x86_64_nacl.sh: New file.
  545. * Makefile.am (ALL_EMULATION_SOURCES): Add eelf_i386_nacl.c here.
  546. (ALL_64_EMULATION_SOURCES): Add eelf32_x86_64_nacl.c and
  547. eelf_x86_64_nacl.c here.
  548. (eelf_i386_nacl.c, eelf32_x86_64_nacl.c, eelf_x86_64_nacl.c):
  549. New targets.
  550. * Makefile.in: Regenerated.
  551. * scripttempl/elf.sc: Handle SEPARATE_CODE cases.
  552. 2012-04-02 Mike Frysinger <vapier@gentoo.org>
  553. * ldmisc.c (vfinfo): Assign new local str to fmt. Delete
  554. putc call. If str and fmt are different, call fwrite on
  555. the difference.
  556. 2012-03-30 Nick Clifton <nickc@redhat.com>
  557. * po/vi.po: Updated Vietnamese translation.
  558. 2012-03-27 Roland McGrath <mcgrathr@google.com>
  559. * configure.in: Set want64 on a 64-bit host regardless of
  560. --enable-targets=all.
  561. * configure: Regenerated.
  562. 2012-03-26 Tristan Gingold <gingold@adacore.com>
  563. * lexsup.c (parse_args): Add a missing '\n'.
  564. 2012-03-25 Alan Modra <amodra@gmail.com>
  565. * ldemul.c (before_allocation_default): Revert last change.
  566. * ldlang.c (lang_add_section): Likewise.
  567. (strip_excluded_output_sections): Don't strip output sections with
  568. user input sections when emitrelocations, unless all are SEC_EXCLUDE.
  569. 2012-03-23 Alan Modra <amodra@gmail.com>
  570. * ldemul.c (before_allocation_default): When emitrelocations,
  571. don't strip sections..
  572. * ldlang.c (lang_add_section): ..and don't set up map_head, map_tail.
  573. 2012-03-14 Kai Tietz <ktietz@redhat.com>
  574. Pascal Obry <pascal@obry.net>
  575. * pe-dll.c (found_sym): New static variable.
  576. (undef_count): Likewise.
  577. (key_value): New structure.
  578. (undef_sort_cmp): Compare routine for qsort/bsearch.
  579. (pe_find_cdecl_alias_match): Add new argument.
  580. (pe_undef_alias_cdecl_match): Removed.
  581. (pe_undef_count): New helper routine.
  582. (pe_create_undef_table): Likewise.
  583. (pe_process_import_defs): Use pe_create_undef_table and
  584. new pe_undef_alias_cdecl_match function.
  585. 2012-03-14 Alan Modra <amodra@gmail.com>
  586. PR ld/13839
  587. * ldexp.c (fold_name): Ignore undefined symbols when assigning to
  588. dot in mark phase.
  589. (exp_fold_tree_1): Evaluate assignment to dot expressions even when
  590. discarding result, for side effects. Fix typo in error message.
  591. 2012-03-08 Tristan Gingold <gingold@adacore.com>
  592. * ldexp.c (exp_print_tree): Special case for SEGMENT_START.
  593. (exp_print_token): Constify.
  594. 2012-03-08 Alan Modra <amodra@gmail.com>
  595. PR ld/10340
  596. * ldfile.c (is_sysrooted_pathname): Remove notsame param.
  597. (ldfile_add_library_path): Don't set sysrooted flag.
  598. (ldfile_open_file_search): Likewise, and don't copy them.
  599. (try_open): Delete exten and code handling such. Add sysrooted
  600. param and return whether path is in sysroot.
  601. (ldfile_find_command_file): Delete extend param. Add sysrooted
  602. param. Rename local var. Update try_open calls.
  603. (ldfile_open_command_file_1): Pass sysrooted to lex_push_file.
  604. * ldfile.h (search_dirs_type): Remove sysrooted field.
  605. * ldlang.c (new_afile): Always set sysrooted from input_flags.
  606. (load_symbols): Don't set input_flags.sysrooted.
  607. * ldlang.h (struct lang_input_statement_flags): Revise sysrooted
  608. comment.
  609. * ldlex.h (lex_push_file): Update prototype.
  610. * ldlex.l (sysrooted_stack): New array.
  611. (EOF): Pop input_flags.sysrooted.
  612. (lex_push_file): Add sysrooted param. Save and set
  613. input_flags.sysrooted.
  614. 2012-03-06 Alan Modra <amodra@gmail.com>
  615. * ldlang.h (struct lang_input_statement_flags): New, extract from..
  616. (lang_input_statement_type): ..here. New field "flags".
  617. (input_flags): Declare.
  618. (missing_file): Delete.
  619. * ldmain.h (whole_archive): Delete.
  620. (add_DT_NEEDED_for_regular, add_DT_NEEDED_for_dynamic): Delete.
  621. * ld.h (ld_config_type <dynamic_link>): Delete.
  622. * ldmain.c (whole_archive): Delete.
  623. (add_DT_NEEDED_for_regular, add_DT_NEEDED_for_dynamic): Delete.
  624. * ldlang.c (missing_file, ldlang_sysrooted_script): Delete.
  625. (input_flags): New variable. Replace all uses of config.dynamic_link,
  626. missing_file, ldlang_sysrooted_script, whole_archive,
  627. add_DT_NEEDED_for_regular and add_DT_NEEDED_for_dynamic with fields
  628. from here.
  629. * ldfile.c: Likewise.
  630. * ldgram.y: Likewise.
  631. * ldmain.c: Likewise.
  632. * ldwrite.c: Likewise.
  633. * lexsup.c: Likewise.
  634. * plugin.c: Likewise.
  635. * emultempl/aix.em: Likewise.
  636. * emultempl/armelf.em: Likewise.
  637. * emultempl/elf32.em: Likewise.
  638. * emultempl/hppaelf.em: Likewise.
  639. * emultempl/linux.em: Likewise.
  640. * emultempl/pe.em: Likewise.
  641. * emultempl/pep.em: Likewise.
  642. * emultempl/ppc64elf.em: Likewise.
  643. * emultempl/scoreelf.em: Likewise.
  644. * emultempl/spuelf.em: Likewise.
  645. * emultempl/sunos.em: Likewise.
  646. * emultempl/vms.em: Likewise.
  647. * ldlang.c (new_afile): Use memset to init zero fields.
  648. (load_symbols): Simplify save and restore of flags around command
  649. file processing.
  650. * ldfile.c (is_sysrooted_pathname): Tidy.
  651. 2012-03-05 Hans-Peter Nilsson <hp@axis.com>
  652. * configure.tgt (mips64*el-*-freebsd*, mips64*-*-freebsd*)
  653. (mips*el-*-freebsd*, mips*-*-freebsd*): Correct triplets by
  654. replacing trailing "-*" with "*".
  655. 2012-02-25 Walter Lee <walt@tilera.com>
  656. * Makefile.am (ALL_EMULATION_SOURCES): Add eelf32tilegx_be.c.
  657. (ALL_64_EMULATION_SOURCES): Add eelf64tilegx_be.c.
  658. (eelf32tilegx_be.c): Add rule to build this file.
  659. (eelf64tilegx_be.c): Ditto.
  660. * Makefile.in: Regenerate.
  661. * configure.tgt (tilegx-*-*): Support big endian.
  662. (tilegxbe-*-*): New.
  663. * emulparams/elf32tilegx.sh (OUTPUT_FORMAT): Rename.
  664. (BIG_OUTPUT_FORMAT): Define.
  665. (LITTLE_OUTPUT_FORMAT): Define.
  666. * emulparams/elf32tilegx_be.sh: New.
  667. * emulparams/elf64tilegx.sh (OUTPUT_FORMAT): Rename.
  668. (BIG_OUTPUT_FORMAT): Define.
  669. (LITTLE_OUTPUT_FORMAT): Define.
  670. * emulparams/elf64tilegx_be.sh: New.
  671. 2012-02-24 Kai Tietz <ktietz@redhat.com>
  672. PR binutils/13710
  673. * deffilep.y (keyword_as_name): Disable LIBRARY
  674. keyword.
  675. 2012-02-22 Alan Modra <amodra@gmail.com>
  676. PR ld/13683
  677. * ldlang.c (lang_process): Rerun lang_do_assignments before
  678. starting garbage collection.
  679. * ldexp.c (fold_name): Generate a reloc for defined symbols
  680. found without an associated output section during the mark phase.
  681. (exp_fold_tree_1): Continue processing an expression, even if we
  682. are unable to fold it, if we are in the first two evaluation
  683. phases.
  684. * ldexp.h (enum lang_phase_type): Add descriptions of the phases.
  685. 2012-02-19 Kai Tietz <ktietz@redhat.com>
  686. * deffilep.y (cmp_import_elem): Sort first by module name.
  687. * pe-dll.c (process_def_file_and_drectve): Free strings
  688. from removed export-element.
  689. (add_bfd_to_link): Optimize loop on import-elements and lower
  690. allocated memory.
  691. (pe_implied_import_dll): Pass NULL instead of 0 for pointer
  692. argument.
  693. 2012-02-18 Hans-Peter Nilsson <hp@axis.com>
  694. * ldmisc.c (vfinfo <%S>): Use same type and avoid cast for
  695. temporary variable node used for NULL argument.
  696. 2012-02-18 Alan Modra <amodra@gmail.com>
  697. PR ld/13343
  698. * ld.h (parsing_defsym): Delete.
  699. * ldexp.c (exp_intop, exp_bigintop, exp_relop): Set type.filename.
  700. (fold_binary, fold_name, exp_fold_tree_1, exp_get_vma, exp_get_fill,
  701. exp_get_abs_int): Add tree arg for %S in error messages. Don't
  702. fudge lineno.
  703. (exp_binop, exp_unop, exp_nameop, exp_assop, exp_assert): Copy
  704. type.filename from sub-tree.
  705. (exp_trinop): Likewise, and use "cond" rather than "lhs".
  706. * ldexp.h (node_type): Add filename field to struct.
  707. * ldfile.c (ldfile_input_filename): Delete. Remove all refs.
  708. * ldfile.h (ldfile_input_filename): Delete.
  709. * ldgram.y (phdr_type, phdr_qualifiers, yyerror): Add NULL arg for
  710. %S in error messages.
  711. * ldemul.c (syslib_default, hll_default): Likewise.
  712. * ldlang.c (lang_memory_region_lookup, lang_memory_region_alias,
  713. lang_get_regions, lang_new_phdr): Likewise.
  714. (lang_size_sections_1): Pass addr_tree for %S.
  715. * ldlex.h (lex_redirect): Update prototype.
  716. (ldlex_filename): Declare.
  717. * ldlex.l (<EOF>): Don't set ldfile_input_filename.
  718. (lex_redirect): Add fake_filename and count params. Push
  719. fake_filename to file_name_stack and init lineno from count.
  720. (ldlex_filename): New function.
  721. (lex_warn_invalid): Use above.
  722. * ldmain.c (main): Update lex_redirect call.
  723. * ldmisc.c (vfinfo <%S>): Take file name and line number from
  724. etree_type arg, or use current if arg is NULL.
  725. * lexsup.c (parsing_defsym): Delete.
  726. (parse_args <OPTION_DEFSYM>): Update lex_redirect call.
  727. 2012-02-13 Kai Tietz <ktietz@redhat.com>
  728. * deffilep.y (find_export_in_list): Set is_indent for
  729. first or last element, if identical.
  730. (find_import_in_list): Likewise.
  731. 2012-02-11 Kai Tietz <ktietz@redhat.com>
  732. * deffilep.y (%union): New type id_const.
  733. (opt_name2): New rule.
  734. (keyword_as_name): New rule.
  735. (dot_name): Replaced by opt_name2 rule.
  736. (opt_name): Adjust rule.
  737. (opt_equal_name): Likewise.
  738. 2012-02-11 Pascal Obry <pascal@obry.net>
  739. * pe-dll.c (auto_export): Use bsearch to speed up scan of exports
  740. table.
  741. (process_def_file_and_drectve): Maintain sorting of exports table
  742. after stripping leading @ signs.
  743. 2012-02-09 Alan Modra <amodra@gmail.com>
  744. * ldgram.y (input_section_spec_no_keep): Don't ignore sect_flags.
  745. 2012-01-31 H.J. Lu <hongjiu.lu@intel.com>
  746. PR ld/13616
  747. * emulparams/elf32_x86_64.sh: Remove NOP.
  748. * emulparams/elf_i386.sh: Likewise.
  749. * emulparams/elf_i386_be.sh: Likewise.
  750. * emulparams/elf_i386_ldso.sh: Likewise.
  751. * emulparams/elf_i386_vxworks.sh: Likewise.
  752. * emulparams/elf_k1om.sh: Likewise.
  753. * emulparams/elf_l1om.sh: Likewise.
  754. * emulparams/elf_x86_64.sh: Likewise.
  755. * ldlang.c (zero_fill): Initialized to 0.
  756. * ldwrite.c (build_link_order): Set data size to linker odrder
  757. size when they are the same.
  758. * scripttempl/elf.sc: Don't specify fill if NOP is undefined.
  759. 2012-01-17 Alan Modra <amodra@gmail.com>
  760. * ldver.c (ldversion): Update copyright message year.
  761. 2012-01-15 Alan Modra <amodra@gmail.com>
  762. PR ld/12758
  763. * ldlang.c (lang_process): Don't reopen all files, just those
  764. newly added by plugin.
  765. 2012-01-11 Alan Modra <amodra@gmail.com>
  766. * emultempl/ppc64elf.em (PARSE_AND_LIST_PROLOGUE,
  767. PARSE_AND_LIST_LONGOPTS, PARSE_AND_LIST_OPTIONS,
  768. PARSE_AND_LIST_ARGS_CASES): Handle --{no-,}plt-thread-safe and
  769. --{no-,}plt-align.
  770. (plt_thread_safe, plt_stub_align): New vars.
  771. (gld${EMULATION_NAME}_after_allocation): Pass them to
  772. ppc64_elf_size_stubs. Align stub sections according to plt_stub_align.
  773. * ld.texinfo: Document new command line options, and an old
  774. undocumented option.
  775. 2012-01-09 Roland McGrath <mcgrathr@google.com>
  776. * configure.in: Use AM_ZLIB.
  777. * configure: Regenerated.
  778. For older changes see ChangeLog-2011
  779. Copyright (C) 2012 Free Software Foundation, Inc.
  780. Copying and distribution of this file, with or without modification,
  781. are permitted in any medium without royalty provided the copyright
  782. notice and this notice are preserved.
  783. Local Variables:
  784. mode: change-log
  785. left-margin: 8
  786. fill-column: 74
  787. version-control: never
  788. End: