1b2cb8e2ee
Add support for TLS in XCOFF. Amongst the things done by this commit: - Update XCOFF auxialiary header to match new version and allow TLS sections. - Add TLS sections (.tdata and .tbss) support in gas and ld. - Add support for the TLS relocations in gas and ld. Two different types BFD_RELOC are created for PPC and PPC64 as the size is a pointer, thus distinct in 32 or 64bit. The addresses given by ld to .tdata and .tbss is a bit special. In XCOFF, these addresses are actually offsets from the TLS pointer computed at runtime. AIX assembly and linker does the same. In top of that, the .tdata must be before .data (this is mandatory for AIX loader). Thus, the aix ld script is recomputing "." before .data to restore its original value. There might be a simpler way, but this one is working. Optimisation linked to TLS relocations aren't yet implemented. bfd/ * reloc.c (BFD_RELOC_PPC_TLS_LE, BFD_RELOC_PPC_TLS_IE, BFD_RELOC_PPC_TLS_M, BFD_RELOC_PPC_TLS_ML, BFD_RELOC_PPC64_TLS_GD, BFD_RELOC_PPC64_TLS_LD, BFD_RELOC_PPC64_TLS_LE, BFD_RELOC_PPC64_TLS_IE, BFD_RELOC_PPC64_TLS_M, BFD_RELOC_PPC64_TLS_ML): New relocations. * bfd-in2.h: Regenerate. * libbfd.h: Regenerate. * coff-rs6000.c (xcoff_calculate_relocation): Call xcoff_reloc_type_tls for TLS relocations. (xcoff_howto_table): Implement TLS relocations. (_bfd_xcoff_reloc_type_lookup): Add cases TLS relocations. (xcoff_reloc_type_tls): New function. * coff64-rs6000.c (xcoff_calculate_relocation): Likewise. (xcoff_howto_table): Likewise. (_bfd_xcoff_reloc_type_lookup): Likewise. * coffcode.h (sec_to_styp_flags): Handle TLS sections. (styp_to_sec_flags): Likewise. (coff_compute_section_file_positions): Avoid file offset optimisation for .data when the previous section is .tdata. (coff_write_object_contents): Handle TLS sections. * coffswap.h (coff_swap_aouthdr_out): Add support for new fields in aouthdr. * libxcoff.h (xcoff_reloc_type_tls): Add prototype. * xcofflink.c (xcoff_link_add_symbols): Handle XMC_UL. (xcoff_need_ldrel_p): Add cases for TLS relocations. (xcoff_create_ldrel): Add l_symndx for TLS sections. gas/ * config/tc-ppc.c (ppc_xcoff_text_section, ppc_xcoff_data_section, (ppc_xcoff_bss_section, ppc_xcoff_tdata_section, (ppc_xcoff_tbss_section): New variables. (ppc_text_subsegment, ppc_text_csects, ppc_data_subgments, (ppc_data_csects): Removed. (ppc_xcoff_section_is_initialized, ppc_init_xcoff_section, ppc_xcoff_parse_cons): New functions. (md_being): Initialize XCOFF sections. (ppc_xcoff_suffix): Add support for TLS relocations (fixup_size, md_apply_fix): Add support for new BFD_RELOC. (ppc_change_csect): Handle XMC_TL, XMC_UL. Correctly, add XMC_BS to .bss section. Handle new XCOFF section variables. (ppc_comm): Likewise. (ppc_toc): Likewise. (ppc_symbol_new_hook): Likewise. (ppc_frob_symbol): Likewise. (ppc_fix_adjustable): Add tbss support. * config/tc-ppc.h (TC_PARSE_CONS_EXPRESSION): New define. (ppc_xcoff_parse_cons): Add prototype. (struct ppc_xcoff_section): New structure. ld/ * emultempl/aix.em: Ensure .tdata section is removed if empty, even with -r flag. * scripttempl/aix.sc: Handle TLS sections. * testsuite/ld-powerpc/aix52.exp: Add new tests. * testsuite/ld-powerpc/aix-tls-reloc-32.d: New test. * testsuite/ld-powerpc/aix-tls-reloc-64.d: New test. * testsuite/ld-powerpc/aix-tls-reloc.ex: New test. * testsuite/ld-powerpc/aix-tls-reloc.s: New test. * testsuite/ld-powerpc/aix-tls-section-32.d: New test. * testsuite/ld-powerpc/aix-tls-section-64.d: New test. * testsuite/ld-powerpc/aix-tls-section.ex: New test. * testsuite/ld-powerpc/aix-tls-section.s: New test. include/ * coff/internal.h (struct internal_aouthdr): Add new fields. * coff/rs6000.h (AOUTHDRÃ): Add new fields. * coff/rs6k64.h (struct external_filehdr): Likewise. * coff/xcoff.h (_TDATA), _TBSS): New defines (RS6K_AOUTHDR_TLS_LE, RS6K_AOUTHDR_RAS, RS6K_AOUTHDR_ALGNTDATA, RS6K_AOUTHDR_SHR_SYMTAB, RS6K_AOUTHDR_FORK_POLICY, RS6K_AOUTHDR_FORK_COR): New defines. (XMC_TU): Removed. (XMC_UL): New define.
1027 lines
37 KiB
Plaintext
1027 lines
37 KiB
Plaintext
2021-03-12 Clément Chigot <clement.chigot@atos.net>
|
|
|
|
* emultempl/aix.em: Ensure .tdata section is removed
|
|
if empty, even with -r flag.
|
|
* scripttempl/aix.sc: Handle TLS sections.
|
|
* testsuite/ld-powerpc/aix52.exp: Add new tests.
|
|
* testsuite/ld-powerpc/aix-tls-reloc-32.d: New test.
|
|
* testsuite/ld-powerpc/aix-tls-reloc-64.d: New test.
|
|
* testsuite/ld-powerpc/aix-tls-reloc.ex: New test.
|
|
* testsuite/ld-powerpc/aix-tls-reloc.s: New test.
|
|
* testsuite/ld-powerpc/aix-tls-section-32.d: New test.
|
|
* testsuite/ld-powerpc/aix-tls-section-64.d: New test.
|
|
* testsuite/ld-powerpc/aix-tls-section.ex: New test.
|
|
* testsuite/ld-powerpc/aix-tls-section.s: New test.
|
|
|
|
2021-03-12 Clément Chigot <clement.chigot@atos.net>
|
|
|
|
* scripttempl/aix.sc: Add .te to .data section.
|
|
* testsuite/ld-powerpc/aix52.exp: Add test structure for AIX7+.
|
|
Add aix-largetoc-1 test.
|
|
* testsuite/ld-powerpc/aix-largetoc-1-32.d: New test.
|
|
* testsuite/ld-powerpc/aix-largetoc-1-64.d: New test.
|
|
* testsuite/ld-powerpc/aix-largetoc-1.ex: New test.
|
|
* testsuite/ld-powerpc/aix-largetoc-1.s: New test.
|
|
|
|
2021-03-12 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-gc/gc.exp: Pass "-image-base 0" to ld for PE, and
|
|
arrange to define __main for some run_dump_test tests.
|
|
* testsuite/ld-gc/pr13683.d: Accept more symbols.
|
|
* testsuite/ld-gc/pr14265.d: Likewise, and ordering.
|
|
* testsuite/ld-scripts/crossref.exp: Pass "-image-base 0" to ld for PE.
|
|
* testsuite/ld-srec/srec.exp: Likewise.
|
|
* testsuite/lib/ld-lib.exp (ld_link_defsyms): Use is_pecoff_format.
|
|
|
|
2021-03-11 Nelson Chu <nelson.chu@sifive.com>
|
|
|
|
* emultempl/riscvelf.em (after_allocation): Run ldelf_map_segments
|
|
many times if riscv_restart_relax_sections returns TRUE.
|
|
* testsuite/ld-riscv-elf/restart-relax.d: New testcase. Before
|
|
applying this patch, the call won't be relaxed to jal; But now we
|
|
have more chances to do relaxations.
|
|
* testsuite/ld-riscv-elf/restart-relax.s: Likewise.
|
|
* testsuite/ld-riscv-elf/ld-riscv-elf.exp: Updated.
|
|
|
|
2021-03-10 Jan Beulich <jbeulich@suse.com>
|
|
|
|
* testsuite/ld-scripts/pr22267.t: Avoid symbol value with more
|
|
than 32 set bits.
|
|
* testsuite/ld-scripts/pr22267.d: Adjust expectation and drop
|
|
comment.
|
|
* scripttempl/mcorepe.sc: Use PROVIDE() for _stack.
|
|
|
|
2021-03-09 Jan Beulich <jbeulich@suse.com>
|
|
|
|
* testsuite/ld-pe/reloc.s: Add entry point symbols. Increase
|
|
alignment to 4k.
|
|
* testsuite/ld-pe/reloc.d: xfail for mcore.
|
|
|
|
2021-03-09 Jan Beulich <jbeulich@suse.com>
|
|
|
|
* testsuite/ld-scripts/alignof.exp,
|
|
testsuite/ld-scripts/data.exp,
|
|
testsuite/ld-scripts/default-script.exp,
|
|
testsuite/ld-scripts/log2.exp,
|
|
testsuite/ld-scripts/print-memory-usage.exp,
|
|
testsuite/ld-scripts/sizeof.exp,
|
|
testsuite/ld-undefined/weak-undef.exp: Set image base to zero
|
|
for PE/COFF.
|
|
* testsuite/ld-scripts/default-script1.d,
|
|
testsuite/ld-scripts/default-script2.d,
|
|
testsuite/ld-scripts/default-script3.d,
|
|
testsuite/ld-scripts/default-script4.d: Drop xfail and comment.
|
|
|
|
2021-03-05 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27425
|
|
PR ld/27432
|
|
* ldelf.c (ldelf_set_output_arch): New function.
|
|
* ldelf.h (ldelf_set_output_arch): New prototype.
|
|
* emultempl/elf.em (LDEMUL_SET_OUTPUT_ARCH): Default to
|
|
ldelf_set_output_arch.
|
|
* ld-x86-64/pe-x86-64-1.od: Expect __executable_start.
|
|
* testsuite/ld-x86-64/pe-x86-64-2.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-3.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-4.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-5.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-5.rd: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-6.obj.bz2: New file.
|
|
* testsuite/ld-x86-64/pe-x86-64-6.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64.exp: Run ld/27425 test.
|
|
|
|
2021-03-04 Jan Beulich <jbeulich@suse.com>
|
|
|
|
* testsuite/ld-scripts/map-address.exp: Set image base to zero
|
|
for PE/COFF.
|
|
* testsuite/ld-scripts/map-address.t: Place .text.
|
|
|
|
2021-03-04 Jan Beulich <jbeulich@suse.com>
|
|
|
|
* ldexp.c (ldexp_is_final_sym_absolute): New.
|
|
* ldexp.h (ldexp_is_final_sym_absolute): Declare.
|
|
* pe-dll.c (generate_reloc): Skip absolute symbols.
|
|
* testsuite/ld-pe/reloc.s, testsuite/ld-pe/reloc.d: New.
|
|
* testsuite/ld-pe/pe.exp: Run new test.
|
|
|
|
2021-03-03 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 27500
|
|
* ldlang.c (insert_undefined): Don't mark symbols here.
|
|
(lang_mark_undefineds): Do so here instead, new function.
|
|
(lang_process): Call lang_mark_undefineds.
|
|
* testsuite/ld-gc/start3.d,
|
|
* testsuite/ld-gc/start3.s: New test.
|
|
* testsuite/ld-gc/start4.d,
|
|
* testsuite/ld-gc/start4.s: New test.
|
|
* testsuite/ld-gc/gc.exp: Run them.
|
|
|
|
2021-03-03 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-gc/gc.exp: Define UNDERSCORE in ASFLAGS.
|
|
Move tests with ELF section directives to is_elf_format block.
|
|
* testsuite/ld-gc/abi-note.d: Run on more targets.
|
|
* testsuite/ld-gc/pr19167.d: Likewise and adjust xfails.
|
|
* testsuite/ld-gc/start.d: Likewise.
|
|
* testsuite/ld-gc/start2.d: Likewise.
|
|
* testsuite/ld-gc/stop.d: Likewise.
|
|
* testsuite/ld-gc/pr19167a.s: Add support for underscore targets.
|
|
* testsuite/ld-gc/start.s: Likewise.
|
|
* testsuite/ld-gc/start2.s: Likewise.
|
|
|
|
2021-03-02 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* ldelfgen.c (ldelf_ctf_strtab_iter_cb): Skip zero-refcount strings.
|
|
|
|
2021-03-02 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-powerpc/startstop.d,
|
|
* testsuite/ld-powerpc/startstop.r,
|
|
* testsuite/ld-powerpc/startstop.s: New test.
|
|
* testsuite/ld-powerpc/powerpc.exp: Run it.
|
|
|
|
2021-03-02 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-powerpc/weak1.d,
|
|
* testsuite/ld-powerpc/weak1.r,
|
|
* testsuite/ld-powerpc/weak1.s,
|
|
* testsuite/ld-powerpc/weak1so.d,
|
|
* testsuite/ld-powerpc/weak1so.r: New tests.
|
|
* testsuite/ld-powerpc/powerpc.exp: Run them.
|
|
|
|
2021-03-01 Hannes Domani <ssbssa@sourceware.org>
|
|
Nick Clifton <nickc@redhat.com>
|
|
|
|
PR 27268
|
|
* scripttempl/pe.sc: Add DWARF-5 section names.
|
|
* scripttempl/pep.sc: Likewise.
|
|
|
|
2021-03-01 Alan Modra <amodra@gmail.com>
|
|
Fangrui Song <maskray@google.com>
|
|
|
|
* emultempl/elf.em: Handle -z start-stop-gc and -z nostart-stop-gc.
|
|
* lexsup.c (elf_static_list_options): Display help for them. Move
|
|
help for -z stack-size to here from elf_shlib_list_options. Add
|
|
help for -z start-stop-visibility and -z undefs.
|
|
* ld.texi: Document -z start-stop-gc and -z nostart-stop-gc.
|
|
* NEWS: Mention -z start-stop-gc.
|
|
* testsuite/ld-gc/start2.s,
|
|
* testsuite/ld-gc/start2.d: New test.
|
|
* testsuite/ld-gc/gc.exp: Run it.
|
|
|
|
2021-03-01 Alan Modra <amodra@gmail.com>
|
|
|
|
* ldlang.c (undef_start_stop): For ELF make undefined start/stop
|
|
symbols undefweak if that was how they were referenced. Undo
|
|
dynamic state too.
|
|
|
|
2021-03-01 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-elf/pr25708.d: Add --with-symbol-versions to nm.
|
|
* testsuite/ld-elf/pr27128a.d: Likewise.
|
|
* testsuite/ld-elf/pr27128b.d: Likewise.
|
|
* testsuite/ld-elf/pr27128c.d: Likewise.
|
|
* testsuite/ld-elf/pr27128d.d: Likewise.
|
|
* testsuite/ld-elf/pr27128e.d: Likewise.
|
|
|
|
2021-02-26 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 27441
|
|
* testsuite/ld-plugin/pr27441a.c,
|
|
* testsuite/ld-plugin/pr27441b.c,
|
|
* testsuite/ld-plugin/pr27441c.c,
|
|
* testsuite/ld-plugin/pr27441c.d: New test.
|
|
* testsuite/ld-plugin/lto.exp: Run it.
|
|
|
|
2021-02-25 Jan Beulich <jbeulich@suse.com>
|
|
|
|
* ld.texi (PROVIDE): Downgrade "error" to "diagnostic".
|
|
|
|
2021-02-21 Alan Modra <amodra@gmail.com>
|
|
|
|
* ldexp.c (exp_fold_tree_1): Warn on script defining a symbol
|
|
defined in an object file.
|
|
* ldmain.c (multiple_definition): Heed info->warn_multiple_definition.
|
|
* testsuite/ld-scripts/defined5.d: Expect a warning.
|
|
|
|
2021-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/lib/ld-lib.exp: Whitespace.
|
|
(load_common_lib): Expand single use and delete this proc.
|
|
(run_host_cmd): Use -fno-lto when getting gcc's ld version.
|
|
Use -B for clang too.
|
|
|
|
2021-02-18 Andrew Burgess <andrew.burgess@embecosm.com>
|
|
|
|
* testplugin.c (record_read_length): Remove debug fprintf.
|
|
|
|
2021-02-14 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-cdtest/cdtest.exp,
|
|
* testsuite/ld-checks/checks.exp,
|
|
* testsuite/ld-elf/binutils.exp,
|
|
* testsuite/ld-elf/compress.exp,
|
|
* testsuite/ld-elf/dwarf.exp,
|
|
* testsuite/ld-elf/exclude.exp,
|
|
* testsuite/ld-elf/frame.exp,
|
|
* testsuite/ld-elf/indirect.exp,
|
|
* testsuite/ld-elf/linux-x86.exp,
|
|
* testsuite/ld-elf/sec-to-seg.exp,
|
|
* testsuite/ld-elf/tls_common.exp,
|
|
* testsuite/ld-elfcomm/elfcomm.exp,
|
|
* testsuite/ld-elfvers/vers.exp,
|
|
* testsuite/ld-elfvsb/elfvsb.exp,
|
|
* testsuite/ld-elfweak/elfweak.exp,
|
|
* testsuite/ld-ifunc/binutils.exp,
|
|
* testsuite/ld-mips-elf/mips-elf-flags.exp,
|
|
* testsuite/ld-misc/defsym.exp,
|
|
* testsuite/ld-mn10300/mn10300.exp,
|
|
* testsuite/ld-plugin/lto.exp,
|
|
* testsuite/ld-plugin/plugin.exp,
|
|
* testsuite/ld-scripts/align.exp,
|
|
* testsuite/ld-scripts/assert.exp,
|
|
* testsuite/ld-scripts/crossref.exp,
|
|
* testsuite/ld-scripts/defined.exp,
|
|
* testsuite/ld-scripts/extern.exp,
|
|
* testsuite/ld-scripts/log2.exp,
|
|
* testsuite/ld-scripts/map-address.exp,
|
|
* testsuite/ld-scripts/phdrs.exp,
|
|
* testsuite/ld-scripts/phdrs2.exp,
|
|
* testsuite/ld-scripts/script.exp,
|
|
* testsuite/ld-scripts/section-flags.exp,
|
|
* testsuite/ld-scripts/sizeof.exp,
|
|
* testsuite/ld-scripts/weak.exp,
|
|
* testsuite/ld-selective/selective.exp,
|
|
* testsuite/ld-sh/sh.exp,
|
|
* testsuite/ld-shared/shared.exp,
|
|
* testsuite/ld-srec/srec.exp,
|
|
* testsuite/ld-tic6x/tic6x.exp,
|
|
* testsuite/ld-undefined/undefined.exp,
|
|
* testsuite/ld-undefined/weak-undef.exp,
|
|
* testsuite/lib/ld-lib.exp: Don't use unresolved except after
|
|
perror. Instead report "unsupported" or "fail".
|
|
|
|
2021-02-12 Nick Clifton <nickc@redhat.com>
|
|
|
|
* testsuite/ld-elf/sec64k.exp: Stop readelf from automatically
|
|
following debug links.
|
|
|
|
2021-02-11 Alan Modra <amodra@gmail.com>
|
|
|
|
* NEWS: Mention arm-symbianelf removal.
|
|
|
|
2021-02-09 Alan Modra <amodra@gmail.com>
|
|
|
|
* Makefile.am (ALL_EMULATION_SOURCES): Remove earmsymbian.c.
|
|
Don't include symbian dep file.
|
|
* configure.tgt: Remove arm*-*-symbianelf* entry.
|
|
* emulparams/armsymbian.sh: Delete.
|
|
* ld.texi: Don't mention symbian.
|
|
* scripttempl/armbpabi.sc: Delete.
|
|
* testsuite/ld-arm/symbian-seg1.d: Delete.
|
|
* testsuite/ld-arm/symbian-seg1.s: Delete.
|
|
* testsuite/ld-arm/arm-elf.exp: Don't run symbian-seg1.
|
|
* Makefile.in: Regenerate.
|
|
* po/BLD-POTFILES.in: Regenerate.
|
|
|
|
2021-02-07 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27358
|
|
* testsuite/ld-i386/i386.exp: Remove property 3/4/5 run-time
|
|
tests.
|
|
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
|
|
|
2021-01-26 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* ldlang.c (lang_merge_ctf): Set CTF_LINK_NO_FILTER_REPORTED_SYMS
|
|
when appropriate.
|
|
|
|
2021-02-04 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/19609
|
|
* testsuite/ld-x86-64/pr19609-2a.d: Updated.
|
|
* testsuite/ld-x86-64/pr19609-2b.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-4a.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-4c.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-5d.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-7a.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-7c.d: Likewise.
|
|
|
|
2021-02-04 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/15146
|
|
* testsuite/ld-plugin/lto.exp: Run PR ld/15146 tests.
|
|
* testsuite/ld-plugin/pr15146.d: Restored.
|
|
* testsuite/ld-plugin/pr15146a.c: Likewise.
|
|
* testsuite/ld-plugin/pr15146b.c: Likewise.
|
|
* testsuite/ld-plugin/pr15146c.c: Likewise.
|
|
* testsuite/ld-plugin/pr15146d.c: Likewise.
|
|
|
|
2021-02-04 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-plugin/pr27311d.c: New test.
|
|
* testsuite/ld-plugin/lto.exp: Rename pr27311 to pr27311-1, compile
|
|
and link new test as pr27311-2.
|
|
|
|
2021-02-03 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-ifunc/ifunc.exp (libpr16467b.so, libpr16467bn.so):
|
|
Link with --as-needed.
|
|
|
|
2021-02-02 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-plugin/pr27311.d,
|
|
* testsuite/ld-plugin/pr27311.ver,
|
|
* testsuite/ld-plugin/pr27311a.c,
|
|
* testsuite/ld-plugin/pr27311b.c,
|
|
* testsuite/ld-plugin/pr27311c.c: New testcase.
|
|
* testsuite/ld-plugin/lto.exp: Run it. Correct PR14918 and
|
|
PR12982 entries.
|
|
|
|
2021-02-01 Emery Hemingway <ehmry@posteo.net>
|
|
|
|
* configure.tgt: Add *-*-genode* as a target for AArch64 and x86.
|
|
|
|
2021-02-01 Alan Modra <amodra@gmail.com>
|
|
|
|
* ldgram.y (defsym_expr): Use assignment rule.
|
|
* ldlex.h (ldlex_defsym): Delete.
|
|
* ldlex.l (DEFSYMEXP, ldlex_defsym): Delete.
|
|
|
|
2021-02-01 Alan Modra <amodra@gmail.com>
|
|
|
|
* ldgram.y (section): Call ldlex_backup. Remove empty action.
|
|
* ldlex.h (ldlex_backup): Declare.
|
|
* ldlex.l (<EXPRESSION>NAME): Don't use NOCFILENAMECHAR set of
|
|
chars, use SYMBOLNAMECHAR.
|
|
(ldlex_backup): New function.
|
|
|
|
2021-02-01 Alan Modra <amodra@gmail.com>
|
|
|
|
* ldgram.y: Whitespace fixes.
|
|
|
|
2021-02-01 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-elf/pr27259.d: Correct sh_link match.
|
|
|
|
2021-01-29 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-tic6x/tic6x.exp: Add pr27271 test.
|
|
|
|
2021-01-28 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27259
|
|
* testsuite/ld-elf/pr27259.d: New file.
|
|
* testsuite/ld-elf/pr27259.s: Likewise.
|
|
|
|
2021-01-28 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 27259
|
|
* ldelf.c (ldelf_before_place_orphans): Use linker_mark to
|
|
prevent endless looping of linked-to sections.
|
|
|
|
2021-01-26 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* testsuite/ld-x86-64/bnd-plt-1.d: Fix a typo.
|
|
|
|
2021-01-26 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 27226
|
|
* emulparams/alphavms.sh: Don't set COMPILE_IN.
|
|
* emulparams/elf64_ia64_vms.sh: Likewise.
|
|
* emulparams/elf64mmix.sh: Likewise.
|
|
* emulparams/elf_iamcu.sh: Likewise.
|
|
* emulparams/elf_k1om.sh: Likewise.
|
|
* emulparams/elf_l1om.sh: Likewise.
|
|
* emulparams/mmo.sh: Likewise.
|
|
* emulparams/pdp11.sh: Set DATA_SEG_ADDR.
|
|
* scripttempl/pdp11.sc: Use it.
|
|
* emultempl/pdp11.em: Don't edit .xn script for separate_code,
|
|
instead use .xe script. Support scripts from file system.
|
|
* emultempl/beos.em: Support scripts from file system.
|
|
* emultempl/pe.em: Likewise.
|
|
* emultempl/pep.em: Likewise.
|
|
* testsuite/ld-bootstrap/bootstrap.exp: Make tmpdir/ldscripts link.
|
|
|
|
2021-01-25 Fangrui Song <maskray@google.com>
|
|
|
|
PR ld/27230
|
|
* scripttempl/DWARF.sc: Add .debug_* sections.
|
|
|
|
2021-01-25 Nick Clifton <nickc@redhat.com>
|
|
|
|
* scripttempl/DWARF.sc: Add .debug_loclists, .debug_rnglists,
|
|
.debug_line_str and .debug_str_offsets. Move .debug_macro and
|
|
.debug_addr into DWARF-5 section.
|
|
|
|
2021-01-21 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-elf/pr26936.d: No longer xfail mips.
|
|
|
|
2021-01-20 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-powerpc/relbrlt.s: Make symbols global.
|
|
* testsuite/ld-powerpc/relbrlt.d: Adjust to suit.
|
|
* testsuite/ld-powerpc/tlsget.d: Adjust for reordered stubs.
|
|
* testsuite/ld-powerpc/tlsget.wf: Likewise.
|
|
* testsuite/ld-powerpc/tlsget2.d: Likewise.
|
|
* testsuite/ld-powerpc/tlsget2.wf: Likewise.
|
|
* testsuite/ld-powerpc/tlsexe.r: Adjust for removed section syms.
|
|
* testsuite/ld-powerpc/tlsexe32.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsexe32no.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsexeno.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsexenors.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsexers.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsexetoc.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsexetocrs.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsso.r: Likewise.
|
|
* testsuite/ld-powerpc/tlsso32.r: Likewise.
|
|
* testsuite/ld-powerpc/tlstocso.r: Likewise.
|
|
|
|
2021-01-19 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* testsuite/ld-ctf/data-func-2.c: Stop removal of the extern foo_t
|
|
symbols by the optimizer.
|
|
* testsuite/ld-ctf/data-func-conflicted.d: Adjust accordingly.
|
|
|
|
2021-01-19 Nelson Chu <nelson.chu@sifive.com>
|
|
|
|
* testsuite/ld-elf/elf.exp (riscv_little_endian): Added. Return true
|
|
if target is riscv little endian. Otherwise, return false.
|
|
* testsuite/ld-elf/compressed1d.d: Only xfail the riscv little endian
|
|
targets by [riscv_little_endian].
|
|
|
|
2021-01-18 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 26378
|
|
* ldlang.c (map_input_to_output_sections): Start with a read-only
|
|
section for data statements.
|
|
* testsuite/ld-elf/size-2.d: Adjust to suit.
|
|
|
|
2021-01-17 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27193
|
|
* testsuite/ld-i386/i386.exp: Run PR ld/27193 test.
|
|
* testsuite/ld-i386/pr27193.dd: New file.
|
|
* testsuite/ld-i386/pr27193a.o.bz2: Likewise.
|
|
* testsuite/ld-i386/pr27193b.s: Likewise.
|
|
|
|
2021-01-16 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR binutils/23460
|
|
* testsuite/ld-plugin/lto.exp: Increase the max number of open
|
|
files to 20 for PR binutils/23460 test.
|
|
|
|
2021-01-16 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/23169
|
|
* testsuite/ld-ifunc/ifunc.exp: Replace pr23169c.rd with
|
|
pr23169a.rd for pr23169c and pr23169f. Remove pr23169e tests.
|
|
* testsuite/ld-ifunc/pr23169a.c (foo): Don't compare function
|
|
address.
|
|
|
|
2021-01-15 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* NEWS: Mention -z report-relative-reloc.
|
|
* ld.texi: Document -z report-relative-reloc.
|
|
* emulparams/elf32_x86_64.sh: Source x86-report-relative.sh.
|
|
* emulparams/elf_i386.sh: Likewse.
|
|
* emulparams/elf_x86_64.sh: Likewse.
|
|
* emulparams/x86-report-relative.sh: New file.
|
|
* testsuite/ld-i386/report-reloc-1.d: Likewse.
|
|
* testsuite/ld-i386/report-reloc-1.l: Likewse.
|
|
* testsuite/ld-i386/report-reloc-1.s: Likewse.
|
|
* testsuite/ld-x86-64/report-reloc-1-x32.d: Likewse.
|
|
* testsuite/ld-x86-64/report-reloc-1.d: Likewse.
|
|
* testsuite/ld-x86-64/report-reloc-1.l: Likewse.
|
|
* testsuite/ld-x86-64/report-reloc-1.s: Likewse.
|
|
* testsuite/ld-i386/i386.exp: Run report-reloc-1.
|
|
* testsuite/ld-x86-64/x86-64.exp: Run report-reloc-1 and
|
|
report-reloc-1-x32.
|
|
|
|
2021-01-16 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 26002
|
|
* testsuite/ld-elfvers/vers6.dsym: Expect "Base" for undefined
|
|
unversioned symbols.
|
|
* testsuite/ld-elfvers/vers16.dsym: Likewise.
|
|
|
|
2021-01-15 Nelson Chu <nelson.chu@sifive.com>
|
|
|
|
* testsuite/ld-riscv-elf/attr-merge-priv-spec-failed-01.d: Updated.
|
|
* testsuite/ld-riscv-elf/attr-merge-priv-spec-failed-02.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-priv-spec-failed-03.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-priv-spec-failed-04.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-priv-spec-failed-05.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-priv-spec-failed-06.d: Likewise.
|
|
|
|
2021-01-14 Nick Clifton <nickc@redhat.com>
|
|
|
|
* po/fr.po: Updated French translation.
|
|
|
|
2021-01-14 Mike Frysinger <vapier@gentoo.org>
|
|
|
|
* testsuite/config/default.exp [bfin*-elf*] (gcc_B_opt): Add -msim.
|
|
|
|
2021-01-14 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 27160
|
|
* ldelfgen.c (compare_link_order): Protect access of ELF section
|
|
data.
|
|
(add_link_order_input_section): Remove redundant NULL check.
|
|
Use bfd_get_flavour.
|
|
(ldelf_map_segments): Use bfd_get_flavour.
|
|
|
|
2021-01-13 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* ldelfgen.c (add_link_order_input_section): Check for ELF input
|
|
before accessing ELF section data.
|
|
|
|
2021-01-13 Alan Modra <amodra@gmail.com>
|
|
|
|
* Makefile.in: Regenerate.
|
|
|
|
2021-01-13 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 27160
|
|
* ldlang.h (lang_output_section_statement_type): Add data field.
|
|
(lang_input_section_type, lang_section_bst_type): Add pattern field.
|
|
(statement_list): Declare.
|
|
(lang_add_section): Adjust prototype.
|
|
* emultempl/aarch64elf.em: Adjust lang_add_section calls.
|
|
* emultempl/armelf.em: Likewise.
|
|
* emultempl/beos.em: Likewise.
|
|
* emultempl/cskyelf.em: Likewise.
|
|
* emultempl/hppaelf.em: Likewise.
|
|
* emultempl/m68hc1xelf.em: Likewise.
|
|
* emultempl/metagelf.em: Likewise.
|
|
* emultempl/mipself.em: Likewise.
|
|
* emultempl/mmo.em: Likewise.
|
|
* emultempl/msp430.em: Likewise.
|
|
* emultempl/nios2elf.em: Likewise.
|
|
* emultempl/pe.em: Likewise.
|
|
* emultempl/pep.em: Likewise.
|
|
* emultempl/ppc64elf.em: Likewise.
|
|
* emultempl/spuelf.em: Likewise.
|
|
* emultempl/vms.em: Likewise.
|
|
* ldelf.c: Likewise.
|
|
* ldelfgen.c: Include ldctor.h.
|
|
(struct os_sections): New.
|
|
(add_link_order_input_section, link_order_scan): New functions.
|
|
(compare_link_order, fixup_link_order): New functions.
|
|
(ldelf_map_segments): Call link_order_scan and fixup_link_order.
|
|
* ldlang.c (statement_list): Make global.
|
|
(output_section_callback_fast): Save pattern in tree node.
|
|
(lang_add_section): Add pattern parameter, save in lang_input_section.
|
|
(output_section_callback_tree_to_list): Adjust lang_add_section calls.
|
|
(lang_insert_orphan, output_section_callback): Likewise.
|
|
(ldlang_place_orphan): Likewise.
|
|
(gc_section_callback): Don't set section->pattern.
|
|
* testsuite/ld-elf/pr26256-2a.d: Don't xfail generic.
|
|
* testsuite/ld-elf/pr26256-3b.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-2b.d: Likewise. notarget xgate.
|
|
|
|
2021-01-13 Alan Modra <amodra@gmail.com>
|
|
|
|
* ldlang.h (callback_t): Remove flag_info function parameter.
|
|
* ldlang.c (walk_wild_consider_section): Adjust to suit.
|
|
(walk_wild_section_general): Likewise.
|
|
(output_section_callback_fast, output_section_callback): Likewise.
|
|
(check_section_callback, gc_section_callback): Likewise.
|
|
(find_relro_section_callback): Likewise.
|
|
|
|
2021-01-12 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR binutils/26792
|
|
* configure.ac: Use GNU_MAKE_JOBSERVER.
|
|
* aclocal.m4: Regenerated.
|
|
* configure: Likewise.
|
|
|
|
2021-01-12 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27171
|
|
* testsuite/ld-x86-64/pe-x86-64-5.obj.bz2: New file.
|
|
* testsuite/ld-x86-64/pe-x86-64-5.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-5.rd: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64.exp: Run PR ld/27171 test.
|
|
|
|
2021-01-11 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27173
|
|
* configure: Regenerated.
|
|
|
|
2021-01-11 Matt Jenkins <matt@majenko.co.uk>
|
|
|
|
PR ld/27167
|
|
* ldmain.c (get_emulation): Add mipsmips32r3, mips32r5, mips64r3
|
|
and mips64r5 to list of known mips targets.
|
|
|
|
2021-01-11 Nick Clifton <nickc@redhat.com>matt@majenko.co.uk
|
|
|
|
* po/pt_BR.po: Updated Brazilian Portuguese translation.
|
|
` * po/uk.po: Updated Ukranian translation.
|
|
|
|
2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* configure: Regenerated.
|
|
|
|
2021-01-09 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/27166
|
|
* testsuite/ld-x86-64/lam-u48.rd: New file.
|
|
* testsuite/ld-x86-64/lam-u57.rd: Likewise.
|
|
* testsuite/ld-x86-64/x86-64.exp: Add PR ld/27166 tests.
|
|
|
|
2021-01-09 Nick Clifton <nickc@redhat.com>
|
|
|
|
* configure: Regenerate.
|
|
* po/ld.pot: Regenerate.
|
|
|
|
2021-01-09 Nick Clifton <nickc@redhat.com>
|
|
|
|
* 2.36 release branch crated.
|
|
|
|
2021-01-08 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
* ld-x86-64/property-x86-lam-u48-4.d: Updated.
|
|
* ld-x86-64/property-x86-lam-u48-5.d: Likewise.
|
|
|
|
2021-01-09 Alan Modra <amodra@gmail.com>
|
|
|
|
* configure: Regenerate.
|
|
* Makefile.in: Regenerate.
|
|
|
|
2021-01-07 Samuel Thibault <samuel.thibault@gnu.org>
|
|
|
|
* configure: Regenerate.
|
|
|
|
2021-01-07 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR 27109
|
|
* testsuite/ld-elf/export-class.sd: Adjust the expected output.
|
|
* testsuite/ld-elf/loadaddr3b.d: Likewise.
|
|
* testsuite/ld-i386/ibt-plt-1.d: Likewise.
|
|
* testsuite/ld-i386/ibt-plt-2a.d: Likewise.
|
|
* testsuite/ld-i386/ibt-plt-2c.d: Likewise.
|
|
* testsuite/ld-i386/ibt-plt-3a.d: Likewise.
|
|
* testsuite/ld-i386/ibt-plt-3c.d: Likewise.
|
|
* testsuite/ld-i386/pr19636-1d.d: Likewise.
|
|
* testsuite/ld-i386/pr19636-1l.d: Likewise.
|
|
* testsuite/ld-i386/pr19636-2c.d: Likewise.
|
|
* testsuite/ld-ifunc/ifunc-2-i386-now.d: Likewise.
|
|
* testsuite/ld-ifunc/ifunc-2-local-i386-now.d: Likewise.
|
|
* testsuite/ld-ifunc/ifunc-2-local-x86-64-now.d: Likewise.
|
|
* testsuite/ld-ifunc/ifunc-2-x86-64-now.d: Likewise.
|
|
* testsuite/ld-ifunc/ifunc-21-x86-64.d: Likewise.
|
|
* testsuite/ld-ifunc/ifunc-22-x86-64.d: Likewise.
|
|
* testsuite/ld-ifunc/pr17154-i386-now.d: Likewise.
|
|
* testsuite/ld-ifunc/pr17154-i386.d: Likewise.
|
|
* testsuite/ld-ifunc/pr17154-x86-64-now.d: Likewise.
|
|
* testsuite/ld-ifunc/pr17154-x86-64.d: Likewise.
|
|
* testsuite/ld-x86-64/bnd-branch-1-now.d: Likewise.
|
|
* testsuite/ld-x86-64/bnd-ifunc-1-now.d: Likewise.
|
|
* testsuite/ld-x86-64/bnd-ifunc-2-now.d: Likewise.
|
|
* testsuite/ld-x86-64/bnd-ifunc-2.d: Likewise.
|
|
* testsuite/ld-x86-64/bnd-plt-1-now.d: Likewise.
|
|
* testsuite/ld-x86-64/bnd-plt-1.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-1-x32.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-1.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-2a-x32.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-2a.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-2c-x32.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-2c.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-3a-x32.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-3a.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-3c-x32.d: Likewise.
|
|
* testsuite/ld-x86-64/ibt-plt-3c.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-4e.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-6a.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-6b.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-7b.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19609-7d.d: Likewise.
|
|
* testsuite/ld-x86-64/pr19636-2l.d: Likewise.
|
|
* testsuite/ld-x86-64/pr20253-1d.d: Likewise.
|
|
* testsuite/ld-x86-64/pr20253-1h.d: Likewise.
|
|
* testsuite/ld-x86-64/pr21038b-now.d: Likewise.
|
|
* testsuite/ld-x86-64/pr21038b.d: Likewise.
|
|
* testsuite/ld-x86-64/pr21038c-now.d: Likewise.
|
|
* testsuite/ld-x86-64/pr21038c.d: Likewise.
|
|
* testsuite/ld-x86-64/pr23854.d: Likewise.
|
|
* testsuite/ld-x86-64/pr25416-3.d: Likewise.
|
|
* testsuite/ld-x86-64/pr25416-4.d: Likewise.
|
|
* testsuite/ld-i386/plt-pic.pd: Likewise.
|
|
* testsuite/ld-i386/plt-pic2.dd: Likewise.
|
|
* testsuite/ld-i386/plt.pd: Likewise.
|
|
* testsuite/ld-i386/plt2.dd: Likewise.
|
|
* testsuite/ld-i386/tlsbin.rd: Likewise.
|
|
* testsuite/ld-i386/tlsbin2.rd: Likewise.
|
|
* testsuite/ld-i386/tlsbindesc.rd: Likewise.
|
|
* testsuite/ld-i386/tlsdesc.rd: Likewise.
|
|
* testsuite/ld-i386/tlsgdesc.rd: Likewise.
|
|
* testsuite/ld-i386/tlsnopic.rd: Likewise.
|
|
* testsuite/ld-i386/tlspic.rd: Likewise.
|
|
* testsuite/ld-i386/tlspic2.rd: Likewise.
|
|
* testsuite/ld-x86-64/mpx3.dd: Likewise.
|
|
* testsuite/ld-x86-64/mpx3n.dd: Likewise.
|
|
* testsuite/ld-x86-64/mpx4.dd: Likewise.
|
|
* testsuite/ld-x86-64/mpx4n.dd: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-1.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-2.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-3.od: Likewise.
|
|
* testsuite/ld-x86-64/pe-x86-64-4.od: Likewise.
|
|
* testsuite/ld-x86-64/plt.pd: Likewise.
|
|
* testsuite/ld-x86-64/plt2.dd: Likewise.
|
|
* testsuite/ld-x86-64/tlsbin.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsbin2.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsbindesc.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsdesc.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsgdesc.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlspic.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlspic2.rd: Likewise.
|
|
* testsuite/ld-elf/sec64k.exp: Check
|
|
is_elf_unused_section_symbols.
|
|
|
|
2021-01-07 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-scripts/fill.d: Skip sh-*-pe rather than xfail.
|
|
* testsuite/ld-scripts/fill16.d: Don't xfail sh-*-pe.
|
|
* testsuite/ld-scripts/segment-start.d: Likewise.
|
|
|
|
2021-01-07 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-elf/comm-data5.d: xfail targets that complain
|
|
about dynamic relocations in read-only sections.
|
|
* testsuite/ld-elf/ehdr_start-shared.d: Likewise.
|
|
* testsuite/ld-elf/ehdr_start.d: Likewise.
|
|
* testsuite/ld-scripts/pr22267.d: Likewise.
|
|
* testsuite/ld-elf/shared.exp: Likewise for DT_TEXTREL tests and
|
|
pr20995 text.
|
|
* testsuite/ld-elf/sec64k.exp: Don't run 64ksec on lm32-linux.
|
|
|
|
2021-01-07 Marcus Comstedt <marcus@mc.pp.se>
|
|
|
|
* testsuite/ld-scripts/empty-address-2a.d: xfail riscv64*-*-*.
|
|
* testsuite/ld-scripts/empty-address-2b.d: Likewise.
|
|
|
|
2021-01-07 Alan Modra <amodra@gmail.com>
|
|
|
|
* po/BLD-POTFILES.in: Regenerate.
|
|
|
|
2021-01-07 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-elf/shared.exp: xfail pr22471 for targets that
|
|
complain about relocs in read-only sections. Tidy ASFLAGS append.
|
|
|
|
2021-01-06 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-sparc/sparc.exp (sparc64tests): Set text-segment
|
|
base for some tests.
|
|
* testsuite/ld-sparc/gotop32.dd: Match solaris output.
|
|
* testsuite/ld-sparc/gotop32.sd: Likewise.
|
|
* testsuite/ld-sparc/gotop32.td: Likewise.
|
|
* testsuite/ld-sparc/gotop64.dd: Likewise.
|
|
* testsuite/ld-sparc/gotop64.sd: Likewise.
|
|
* testsuite/ld-sparc/gotop64.td: Likewise.
|
|
* testsuite/ld-sparc/tlsg32.sd: Likewise.
|
|
* testsuite/ld-sparc/tlsg64.sd: Likewise.
|
|
* testsuite/ld-sparc/tlspie32.dd: Likewise.
|
|
* testsuite/ld-sparc/tlspie64.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunbin32.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunbin32.sd: Likewise.
|
|
* testsuite/ld-sparc/tlssunbin32.td: Likewise.
|
|
* testsuite/ld-sparc/tlssunbin64.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunbin64.sd: Likewise.
|
|
* testsuite/ld-sparc/tlssunbin64.td: Likewise.
|
|
* testsuite/ld-sparc/tlssunnopic32.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunnopic32.sd: Likewise.
|
|
* testsuite/ld-sparc/tlssunnopic64.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunnopic64.sd: Likewise.
|
|
* testsuite/ld-sparc/tlssunpic32.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunpic32.sd: Likewise.
|
|
* testsuite/ld-sparc/tlssunpic32.td: Likewise.
|
|
* testsuite/ld-sparc/tlssunpic64.dd: Likewise.
|
|
* testsuite/ld-sparc/tlssunpic64.sd: Likewise.
|
|
* testsuite/ld-sparc/tlssunpic64.td: Likewise.
|
|
* testsuite/ld-sparc/wdispcall.dd: Likewise.
|
|
|
|
2021-01-06 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-scripts/rgn-at10.d: xfail v850.
|
|
* testsuite/ld-scripts/rgn-at11.d: Likewise.
|
|
|
|
2021-01-06 Marcus Comstedt <marcus@mc.pp.se>
|
|
|
|
* testsuite/ld-riscv-elf/ld-riscv-elf.exp: Added
|
|
riscv_choose_[ilp32|lp64]_emul to choose the correct linker script.
|
|
* testsuite/ld-riscv-elf/attr-merge-arch-01.d: Call
|
|
riscv_choose_[ilp32|lp64]_emul instead of hardcoding elf[32|64]lriscv.
|
|
* testsuite/ld-riscv-elf/attr-merge-arch-02.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-arch-03.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-arch-failed-01.d: Likewise.
|
|
* testsuite/ld-riscv-elf/attr-merge-arch-failed-02.d: Likewise.
|
|
* testsuite/ld-riscv-elf/c-lui-2.d: Likewise.
|
|
* testsuite/ld-riscv-elf/c-lui.d: Likewise.
|
|
* testsuite/ld-riscv-elf/call-relax.d: Likewise.
|
|
* testsuite/ld-riscv-elf/pcrel-lo-addend-2.d: Likewise.
|
|
* testsuite/ld-riscv-elf/pcrel-lo-addend.d: Likewise.
|
|
* testsuite/ld-riscv-elf/weakref32.d: Accept bigriscv in addition
|
|
to littleriscv.
|
|
* testsuite/ld-riscv-elf/weakref64.d: Likewise.
|
|
|
|
2021-01-06 Marcus Comstedt <marcus@mc.pp.se>
|
|
|
|
* configure.tgt: Added riscvbe-*-*, riscv32be*-*-*, riscv64be*-*-*,
|
|
riscv32be*-*-linux*, and riscv64be*-*-linux*.
|
|
* Makefile.am: Added eelf32briscv.c, eelf32briscv_ilp32f.c and
|
|
eelf32briscv_ilp32.c.
|
|
* Makefile.in: Regenerate.
|
|
* emulparams/elf32briscv.sh: Added.
|
|
* emulparams/elf32briscv_ilp32.sh: Likewise.
|
|
* emulparams/elf32briscv_ilp32f.sh: Likewise.
|
|
* emulparams/elf64briscv.sh: Likewise.
|
|
* emulparams/elf64briscv_lp64.sh: Likewise.
|
|
* emulparams/elf64briscv_lp64f.sh: Likewise.
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* testsuite/ld-ctf/enum-forward.c: New test.
|
|
* testsuite/ld-ctf/enum-forward.c: New results.
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* testsuite/ld-ctf/array.d: Adjust for dumper changes.
|
|
* testsuite/ld-ctf/conflicting-cycle-1.B-1.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-1.B-2.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-1.parent.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-2.A-1.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-2.A-2.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-2.parent.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-3.C-1.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-3.C-2.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-3.parent.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-enums.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-typedefs.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-cyclic-conflicting.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-cyclic-nonconflicting.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-into-cycle.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-noncyclic.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-1.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-2.A.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-2.B.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-2.C.d: Likewise.
|
|
* testsuite/ld-ctf/data-func-conflicted.d: Likewise.
|
|
* testsuite/ld-ctf/diag-cttname-null.d: Likewise.
|
|
* testsuite/ld-ctf/diag-cuname.d: Likewise.
|
|
* testsuite/ld-ctf/diag-parlabel.d: Likewise.
|
|
* testsuite/ld-ctf/diag-wrong-magic-number-mixed.d: Likewise.
|
|
* testsuite/ld-ctf/forward.d: Likewise.
|
|
* testsuite/ld-ctf/function.d: Likewise.
|
|
* testsuite/ld-ctf/slice.d: Likewise.
|
|
* testsuite/ld-ctf/super-sub-cycles.d: Likewise.
|
|
* testsuite/ld-ctf/enums.c: New test.
|
|
* testsuite/ld-ctf/enums.d: New test.
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* testsuite/ld-ctf/conflicting-cycle-1.parent.d: Adjust for dumper
|
|
changes.
|
|
* testsuite/ld-ctf/cross-tu-cyclic-conflicting.d: Likewise.
|
|
* testsuite/ld-ctf/forward.c: New test...
|
|
* testsuite/ld-ctf/forward.d: ... and results.
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* testsuite/ld-ctf/array.d: Adjust for dumper changes.
|
|
* testsuite/ld-ctf/data-func-conflicted.d: Likewise.
|
|
* testsuite/ld-ctf/diag-cttname-null.d: Likewise.
|
|
* testsuite/ld-ctf/diag-cuname.d: Likewise.
|
|
* testsuite/ld-ctf/diag-parlabel.d: Likewise.
|
|
* testsuite/ld-ctf/function.d: Likewise.
|
|
* testsuite/ld-ctf/slice.d: Likewise.
|
|
|
|
2021-01-05 Nick Alcock <nick.alcock@oracle.com>
|
|
|
|
* testsuite/ld-ctf/array.d: Adjust for dumper changes.
|
|
* testsuite/ld-ctf/conflicting-cycle-1.B-1.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-1.B-2.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-1.parent.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-2.A-1.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-2.A-2.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-2.parent.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-3.C-1.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-3.C-2.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-cycle-3.parent.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-enums.d: Likewise.
|
|
* testsuite/ld-ctf/conflicting-typedefs.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-cyclic-conflicting.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-cyclic-nonconflicting.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-into-cycle.d: Likewise.
|
|
* testsuite/ld-ctf/cross-tu-noncyclic.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-1.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-2.A.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-2.B.d: Likewise.
|
|
* testsuite/ld-ctf/cycle-2.C.d: Likewise.
|
|
* testsuite/ld-ctf/data-func-conflicted.d: Likewise.
|
|
* testsuite/ld-ctf/diag-cttname-null.d: Likewise.
|
|
* testsuite/ld-ctf/diag-cuname.d: Likewise.
|
|
* testsuite/ld-ctf/diag-parlabel.d: Likewise.
|
|
* testsuite/ld-ctf/diag-wrong-magic-number-mixed.d: Likewise.
|
|
* testsuite/ld-ctf/function.d: Likewise.
|
|
* testsuite/ld-ctf/slice.d: Likewise.
|
|
* testsuite/ld-ctf/super-sub-cycles.d: Likewise.
|
|
|
|
2021-01-05 Alan Modra <amodra@gmail.com>
|
|
|
|
* testsuite/ld-scripts/sysroot-prefix.exp: Exclude some targets.
|
|
|
|
2021-01-05 Alan Modra <amodra@gmail.com>
|
|
|
|
PR ld/26256
|
|
* testsuite/ld-elf/pr26256-1b.d: xfail s12z.
|
|
* testsuite/ld-scripts/crossref.exp (cross1): Don't xfail ia64.
|
|
|
|
2021-01-04 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
PR ld/26256
|
|
* ldlang.c (gc_section_callback): Set pattern.
|
|
* testsuite/ld-elf/pr26256-1.s: New file.
|
|
* testsuite/ld-elf/pr26256-1.t: Likewise.
|
|
* testsuite/ld-elf/pr26256-1a.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-1b.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-2.s: Likewise.
|
|
* testsuite/ld-elf/pr26256-2.t: Likewise.
|
|
* testsuite/ld-elf/pr26256-2a.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-2b-alt.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-2b.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-3.s: Likewise.
|
|
* testsuite/ld-elf/pr26256-3a.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-3a.t: Likewise.
|
|
* testsuite/ld-elf/pr26256-3b.d: Likewise.
|
|
* testsuite/ld-elf/pr26256-3b.t: Likewise.
|
|
|
|
2021-01-04 Alan Modra <amodra@gmail.com>
|
|
|
|
PR 26822
|
|
* testsuite/ld-arm/non-contiguous-arm2.d: Adjust STT_FILE symbol match.
|
|
* testsuite/ld-arm/non-contiguous-arm3.d: Likewise.
|
|
* testsuite/ld-arm/non-contiguous-arm5.d: Likewise.
|
|
* testsuite/ld-arm/non-contiguous-arm6.d: Likewise.
|
|
* testsuite/ld-i386/tlsbin.rd: Likewise.
|
|
* testsuite/ld-i386/tlsbin2.rd: Likewise.
|
|
* testsuite/ld-i386/tlsbindesc.rd: Likewise.
|
|
* testsuite/ld-i386/tlsdesc.rd: Likewise.
|
|
* testsuite/ld-i386/tlsnopic.rd: Likewise.
|
|
* testsuite/ld-i386/tlspic.rd: Likewise.
|
|
* testsuite/ld-i386/tlspic2.rd: Likewise.
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-n64.d: Likewise.
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-n64t.d: Likewise.
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-o32.d: Likewise.
|
|
* testsuite/ld-mips-elf/global-local-symtab-sort-o32t.d: Likewise.
|
|
* testsuite/ld-plugin/pr17973.d: Likewise.
|
|
* testsuite/ld-tic6x/shlib-1.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-1b.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-1r.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-1rb.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-app-1.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-app-1b.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-app-1r.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-app-1rb.rd: Likewise.
|
|
* testsuite/ld-tic6x/shlib-noindex.rd: Likewise.
|
|
* testsuite/ld-tic6x/static-app-1.rd: Likewise.
|
|
* testsuite/ld-tic6x/static-app-1b.rd: Likewise.
|
|
* testsuite/ld-tic6x/static-app-1r.rd: Likewise.
|
|
* testsuite/ld-tic6x/static-app-1rb.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsbin.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsbin2.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsbindesc.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlsdesc.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlspic.rd: Likewise.
|
|
* testsuite/ld-x86-64/tlspic2.rd: Likewise.
|
|
* testsuite/ld-xtensa/tlsbin.rd: Likewise.
|
|
* testsuite/ld-xtensa/tlspic.rd: Likewise.
|
|
|
|
2021-01-01 Nicolas Boulenguez <nicolas@debian.org>
|
|
|
|
* configure.tgt: Correct comment grammar.
|
|
* emultempl/m68hc1xelf.em: Likewise.
|
|
* ld.texi: Correct grammar.
|
|
|
|
2021-01-01 Alan Modra <amodra@gmail.com>
|
|
|
|
Update year range in copyright notice of all files.
|
|
|
|
For older changes see ChangeLog-2020
|
|
|
|
Copyright (C) 2021 Free Software Foundation, Inc.
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
are permitted in any medium without royalty provided the copyright
|
|
notice and this notice are preserved.
|
|
|
|
Local Variables:
|
|
mode: change-log
|
|
left-margin: 8
|
|
fill-column: 74
|
|
version-control: never
|
|
End:
|