mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
338ba75534
The current code to compute relative distance in the wrap around case does not handle the edge case of the target (after adjusting for implicit PC increment) being exactly half of the wrap around distance. This patch fixes that and adds a testcase. The range for a forward relative jump call is 4096 bytes ((2 * 2047) + (2 bytes for the implicit PC increment)). If the target of the jump is at a distance of 4098 bytes, it is out of range for a forward jump - however, a backward jump can still reach that address if pmem-wrap-around is 8192. Assume address 0 has rjmp to address 4098. With a wrap around of 8192 and *without* adjusting for the implicit PC increment of 2 bytes, rjmp .-4096 will jump to address 4096 (wrap around at 8192 and decreasing addresses from then on). Adjusting 2 bytes for the implicit PC increment, the actual target is 4098. avr_relative_distance_considering_wrap_around though, does the wrap around only if the passed in distance is less than half of the wrap around distance. In this case, it is exactly equal to half (original distance 4098, adjusted distance of 4096 and wraparound of 8192), and the bypassed wrap around causes the reloc overflow error. Fix by wrapping around even if adjusted distance is equal to half of wrap around distance.
941 lines
36 KiB
Plaintext
941 lines
36 KiB
Plaintext
2019-05-21 Senthil Kumar Selvaraj <senthilkumar.selvaraj@microchip.com>
|
||
|
||
PR ld/24564
|
||
* testsuite/ld-avr/wraparound-range-boundary.d: New test.
|
||
* testsuite/ld-avr/wraparound-range-boundary.s: New test.
|
||
|
||
2019-05-20 Faraz Shahbazker <fshahbazker@wavecomp.com>
|
||
|
||
PR 14798
|
||
* testsuite/ld-mips-elf/reloc-6a.s: Specify .text section for
|
||
global code symbols.
|
||
* testsuite/ld-mips-elf/reloc-6b.s: Likewise.
|
||
|
||
2019-05-17 Alan Modra <amodra@gmail.com>
|
||
|
||
PR 24567
|
||
* plugin.c (plugin_notice): Do not let a common symbol override
|
||
a non-common definition in IR.
|
||
|
||
2019-05-09 Dimitar Dimitrov <dimitar@dinux.eu>
|
||
|
||
* scripttempl/pru.sc (__init_array_begin, __init_array_begin):
|
||
Rename.
|
||
|
||
2019-05-08 Pekka Seppänen <pexu@sourceware.mail.kapsi.fi>
|
||
|
||
PR 24536
|
||
* ldbuildid.c (generate_build_id): Cast return value from
|
||
GetProcAddress in order to avoid a compile time warning.
|
||
|
||
2019-05-06 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-undefined/weak-undef.exp: Don't xfail pj.
|
||
|
||
2019-05-04 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-scripts/fill.d: Don't xfail m32c
|
||
* testsuite/ld-scripts/fill16.d: Likewise.
|
||
|
||
2019-05-04 Alan Modra <amodra@gmail.com>
|
||
|
||
PR 24511
|
||
* testsuite/ld-elf/pr14156a.d: Allow for .init/.fini being a
|
||
data section on hppa64.
|
||
* testsuite/ld-elf/pr14156b.d: Likewise.
|
||
* testsuite/ld-scripts/pr18963.t: Map standard sections to set
|
||
output section flags.
|
||
* testsuite/ld-scripts/sane1.t: Likewise.
|
||
* testsuite/ld-elf/init-fini-arrays.s: Reference __init_array_start
|
||
and __fini_array_start. Define __start et al.
|
||
* testsuite/ld-elf/pr24511.d: New test.
|
||
|
||
2019-04-30 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-powerpc/elfv2exe.d: Update.
|
||
* testsuite/ld-powerpc/elfv2so.d: Update.
|
||
* testsuite/ld-powerpc/tocopt.d: Update.
|
||
* testsuite/ld-powerpc/tocopt.s: Update.
|
||
* testsuite/ld-powerpc/tocopt5.d: Update.
|
||
* testsuite/ld-powerpc/tocopt5.s: Update.
|
||
* testsuite/ld-powerpc/tocopt7.d: Update.
|
||
* testsuite/ld-powerpc/tocopt7.s: Update.
|
||
* testsuite/ld-powerpc/tocopt8.d: Update.
|
||
* testsuite/ld-powerpc/tocopt8.s: Update.
|
||
|
||
2019-04-30 Alan Modra <amodra@gmail.com>
|
||
|
||
* ld.texi (How GNU properties are merged): Avoid pod2man error.
|
||
Correct example.
|
||
|
||
2019-04-26 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24486
|
||
* testsuite/ld-plugin/lto.exp: Run PR ld/24486 tests.
|
||
* testsuite/ld-plugin/pr24486a.c: New file.
|
||
* testsuite/ld-plugin/pr24486b.c: Likewise.
|
||
* testsuite/ld-plugin/pr24486c.c: Likewise.
|
||
|
||
2019-04-26 Nick Clifton <nickc@redhat.com>
|
||
|
||
* po/ru.po: Updated Russian translation.
|
||
|
||
2019-04-26 Christopher Yeleighton <giecrilj@stegny.2a.pl>
|
||
|
||
* ld.texi: Properly hyphenate the word "specific".
|
||
|
||
2019-04-25 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24406
|
||
* ld.texi: Remove LTO warning from --wrap.
|
||
* plugin.c (get_symbols): Update resolution for wrapper and
|
||
wrapped symbols.
|
||
* testsuite/ld-plugin/lto.exp: Run ld/24406 tests.
|
||
* testsuite/ld-plugin/pr24406-1.c: New file.
|
||
* testsuite/ld-plugin/pr24406-2a.c: Likewise.
|
||
* testsuite/ld-plugin/pr24406-2b.c: Likewise.
|
||
|
||
2019-04-25 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* testsuite/ld-aarch64/bti-pac-plt-1.d: Update.
|
||
* testsuite/ld-aarch64/bti-pac-plt-2.d: Update.
|
||
* testsuite/ld-aarch64/bti-plt-1.d: Update.
|
||
* testsuite/ld-aarch64/bti-plt-3.d: Update.
|
||
* testsuite/ld-aarch64/bti-plt-5.d: Update.
|
||
* testsuite/ld-aarch64/pac-plt-1.d: Update.
|
||
* testsuite/ld-aarch64/pac-plt-2.d: Update.
|
||
|
||
2019-04-24 Sandra Loosemore <sandra@codesourcery.com>
|
||
|
||
* testsuite/config/default.exp: Use [check_compiler_available]
|
||
instead of [which $CC].
|
||
* testsuite/ld-auto-import/auto-import.exp: Likewise.
|
||
* testsuite/ld-cygwin/exe-export.exp: Likewise.
|
||
* testsuite/ld-elf/audit.exp: Likewise.
|
||
* testsuite/ld-elf/compress.exp: Likewise.
|
||
* testsuite/ld-elf/dwarf.exp: Likewise.
|
||
* testsuite/ld-elf/elf.exp: Likewise.
|
||
* testsuite/ld-elf/indirect.exp: Likewise.
|
||
* testsuite/ld-elf/linux-x86.exp: Likewise.
|
||
* testsuite/ld-elf/shared.exp: Likewise.
|
||
* testsuite/ld-elf/tls.exp: Likewise.
|
||
* testsuite/ld-elf/wrap.exp: Likewise.
|
||
* testsuite/ld-elfcomm/elfcomm.exp: Likewise.
|
||
* testsuite/ld-elfvers/vers.exp: Likewise.
|
||
* testsuite/ld-elfvsb/elfvsb.exp: Likewise.
|
||
* testsuite/ld-elfweak/elfweak.exp: Likewise.
|
||
* testsuite/ld-gc/gc.exp: Likewise.
|
||
* testsuite/ld-i386/i386.exp: Likewise.
|
||
* testsuite/ld-i386/no-plt.exp: Likewise.
|
||
* testsuite/ld-i386/tls.exp: Likewise.
|
||
* testsuite/ld-ifunc/ifunc.exp: Likewise.
|
||
* testsuite/ld-mn10300/mn10300.exp: Likewise.
|
||
* testsuite/ld-pe/pe-compile.exp: Likewise.
|
||
* testsuite/ld-pe/pe-run.exp: Likewise.
|
||
* testsuite/ld-pe/pe-run2.exp: Likewise.
|
||
* testsuite/ld-pie/pie.exp: Likewise.
|
||
* testsuite/ld-plugin/lto.exp: Likewise.
|
||
* testsuite/ld-plugin/plugin.exp: Likewise.
|
||
* testsuite/ld-scripts/crossref.exp: Likewise.
|
||
* testsuite/ld-sh/sh.exp: Likewise.
|
||
* testsuite/ld-shared/shared.exp: Likewise.
|
||
* testsuite/ld-size/size.exp: Likewise.
|
||
* testsuite/ld-srec/srec.exp: Likewise.
|
||
* testsuite/ld-undefined/undefined.exp: Likewise.
|
||
* testsuite/ld-unique/unique.exp: Likewise.
|
||
* testsuite/ld-x86-64/mpx.exp: Likewise.
|
||
* testsuite/ld-x86-64/no-plt.exp: Likewise.
|
||
* testsuite/ld-x86-64/tls.exp: Likewise.
|
||
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
||
* testsuite/lib/ld-lib.exp (run_ld_link_exec_tests): Call
|
||
check_compiler_available before trying to use the compiler.
|
||
(run_cc_link_tests): Likewise.
|
||
(check_compiler_available): New. Use it instead of [which $CC].
|
||
|
||
2019-04-23 Alan Modra <amodra@gmail.com>
|
||
|
||
* Makefile.am (GENDEPDIR): New var, used..
|
||
(GENSCRIPTS): ..here.
|
||
* Makefile.in: Regenerate.
|
||
* genscripts.sh: Test for $DEPDIR set before every use.
|
||
|
||
2019-04-22 Matthew Fortune <matthew.fortune@mips.com>
|
||
|
||
* testsuite/ld-mips-elf/mips-elf-flags.exp: Fix expected ASEs
|
||
for M5100.
|
||
|
||
2019-04-19 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-gc/skip-map-discarded.s: Add section attributes.
|
||
* testsuite/lib/ld-lib.exp (check_gc_sections_available): Add
|
||
s12z to list of targets not supporting --gc-sections.
|
||
|
||
2019-04-17 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* testsuite/ld-i386/i386.exp: Run pr18801a and pr18801b instead
|
||
of pr18801.
|
||
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
||
* testsuite/ld-i386/pr18801.d: Removed.
|
||
* testsuite/ld-x86-64/pr18801.d: Likewise.
|
||
* testsuite/ld-i386/pr18801a.d: New file.
|
||
* testsuite/ld-i386/pr18801b.d: Likewise.
|
||
* testsuite/ld-x86-64/pr18801a.d: Likewise.
|
||
* testsuite/ld-x86-64/pr18801b.d: Likewise.
|
||
* testsuite/ld-x86-64/pie2.d: Suggest -fPIE instead of -fPIC.
|
||
* testsuite/ld-x86-64/pie2.d: Likewise.
|
||
* testsuite/ld-x86-64/pr19719.d: Likewise.
|
||
* testsuite/ld-x86-64/pr19807-2a.d: Likewise.
|
||
* testsuite/ld-x86-64/pr19969.d: Likewise.
|
||
* testsuite/ld-x86-64/pr21997-1a.err: Likewise.
|
||
* testsuite/ld-x86-64/pr21997-1b.err: Likewise.
|
||
* testsuite/ld-x86-64/pr22001-1a.err: Likewise.
|
||
* testsuite/ld-x86-64/pr22001-1b.err: Likewise.
|
||
* testsuite/ld-x86-64/pr22791-1.err: Likewise.
|
||
|
||
2019-04-17 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24458
|
||
* testsuite/ld-x86-64/x86-64.exp: Run PR ld/24458 tests.
|
||
* testsuite/ld-x86-64/pr24458.s: New file.
|
||
* testsuite/ld-x86-64/pr24458a-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24458a.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24458b-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24458b.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24458c-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24458c.d: Likewise.
|
||
|
||
2019-04-17 Jozef Lawrynowicz <jozef.l@mittosystems.com>
|
||
|
||
* config/tc-msp430.c (msp430_make_init_symbols): Define __crt0_init_bss
|
||
symbol when .lower.bss or .either.bss sections exist.
|
||
Define __crt0_movedata when .lower.data or .either.data sections exist.
|
||
* testsuite/gas/msp430/either-data-bss-sym.d: New test.
|
||
* testsuite/gas/msp430/low-data-bss-sym.d: New test.
|
||
* testsuite/gas/msp430/either-data-bss-sym.s: New test source.
|
||
* testsuite/gas/msp430/low-data-bss-sym.s: New test source.
|
||
* testsuite/gas/msp430/msp430.exp: Run new tests.
|
||
Enable large code model when running -mdata-region={upper,either}
|
||
tests.
|
||
|
||
2019-04-16 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-scripts/pr20302.d: Don't run for ns32k-*-*.
|
||
* testsuite/ld-scripts/section-match-1.d: Likewise.
|
||
* testsuite/ld-undefined/require-defined.exp: Likewise.
|
||
|
||
2019-04-15 Faraz Shahbazker <fshahbazker@wavecomp.com>
|
||
|
||
* testsuite/ld-gc/gc.exp: Skip print-map-discarded test for non-ELF
|
||
targets.
|
||
|
||
2019-04-15 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* testsuite/ld-arm/bfcsel.s: New.
|
||
* testsuite/ld-arm/bfcsel.d: New.
|
||
* testsuite/ld-arm/arm-elf.exp: Add above test.
|
||
|
||
2019-04-15 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* testsuite/ld-arm/bfl.s: New.
|
||
* testsuite/ld-arm/bfl.d: New.
|
||
* testsuite/ld-arm/arm-elf.exp: Add above test.
|
||
|
||
2019-04-15 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* testsuite/ld-arm/bf.s: New.
|
||
* testsuite/ld-arm/bf.d: New.
|
||
* testsuite/ld-arm/arm-elf.exp: Add above test.
|
||
|
||
2019-04-15 Thomas Preud'homme <thomas.preudhomme@arm.com>
|
||
|
||
* testsuite/ld-arm/attr-merge-13.attr: New test.
|
||
* testsuite/ld-arm/attr-merge-13a.s: New test.
|
||
* testsuite/ld-arm/attr-merge-13b.s: New test.
|
||
|
||
2019-04-13 Alan Modra <amodra@gmail.com>
|
||
|
||
* Makefile.am (GENSCRIPTS): Pass LIB_PATH as a parameter. Add
|
||
DEPDIR parameter.
|
||
(ELF_DEPS, ELF_GEN_DEPS, ELF_X86_DEPS): Delete.
|
||
(ALL_EMULATION_SOURCES, ALL_64_EMULATION_SOURCES): Depend on
|
||
$GEN_DEPENDS.
|
||
(e*.c): Delete all dependencies, instead include dependencies
|
||
from $DEPDIR/*.Pc.
|
||
* Makefile.in: Regenerate.
|
||
* configure.ac (source_sh): Define and use function.
|
||
* configure: Regenerate.
|
||
* emulparams/aarch64cloudabib.sh, * emulparams/aarch64elf32b.sh,
|
||
* emulparams/aarch64elfb.sh, * emulparams/aarch64fbsdb.sh,
|
||
* emulparams/aarch64linux32b.sh, * emulparams/aarch64linuxb.sh,
|
||
* emulparams/arcelf.sh, * emulparams/arcelf_prof.sh,
|
||
* emulparams/arclinux.sh, * emulparams/arclinux_nps.sh,
|
||
* emulparams/arclinux_prof.sh, * emulparams/arcv2elf.sh,
|
||
* emulparams/arcv2elfx.sh, * emulparams/armelf_fbsd.sh,
|
||
* emulparams/armelf_linux_eabi.sh,
|
||
* emulparams/armelf_linux_fdpiceabi.sh,
|
||
* emulparams/armelf_nacl.sh, * emulparams/armelf_nbsd.sh,
|
||
* emulparams/armelf_vxworks.sh, * emulparams/armelfb.sh,
|
||
* emulparams/armelfb_fbsd.sh, * emulparams/armelfb_fuchsia.sh,
|
||
* emulparams/armelfb_linux.sh, * emulparams/armelfb_linux_eabi.sh,
|
||
* emulparams/armelfb_linux_fdpiceabi.sh,
|
||
* emulparams/armelfb_nacl.sh, * emulparams/armelfb_nbsd.sh,
|
||
* emulparams/armsymbian.sh, * emulparams/cskyelf_linux.sh,
|
||
* emulparams/elf32_sparc_sol2.sh,
|
||
* emulparams/elf32_sparc_vxworks.sh, * emulparams/elf32_tic6x_be.sh,
|
||
* emulparams/elf32_tic6x_elf_be.sh,
|
||
* emulparams/elf32_tic6x_elf_le.sh,
|
||
* emulparams/elf32_tic6x_linux_be.sh,
|
||
* emulparams/elf32_tic6x_linux_le.sh,
|
||
* emulparams/elf32_x86_64.sh, * emulparams/elf32_x86_64_nacl.sh,
|
||
* emulparams/elf32b4300.sh, * emulparams/elf32bfinfd.sh,
|
||
* emulparams/elf32bmipn32.sh, * emulparams/elf32bsmip.sh,
|
||
* emulparams/elf32btsmip.sh, * emulparams/elf32btsmip_fbsd.sh,
|
||
* emulparams/elf32btsmipn32.sh, * emulparams/elf32btsmipn32_fbsd.sh,
|
||
* emulparams/elf32ebmip.sh, * emulparams/elf32ebmipvxworks.sh,
|
||
* emulparams/elf32elmip.sh, * emulparams/elf32elmipvxworks.sh,
|
||
* emulparams/elf32frvfd.sh, * emulparams/elf32l4300.sh,
|
||
* emulparams/elf32lm32fd.sh, * emulparams/elf32lmip.sh,
|
||
* emulparams/elf32lppc.sh, * emulparams/elf32lppclinux.sh,
|
||
* emulparams/elf32lppcnto.sh, * emulparams/elf32lppcsim.sh,
|
||
* emulparams/elf32lr5900.sh, * emulparams/elf32lr5900n32.sh,
|
||
* emulparams/elf32lriscv.sh, * emulparams/elf32lriscv_ilp32.sh,
|
||
* emulparams/elf32lriscv_ilp32f.sh, * emulparams/elf32lsmip.sh,
|
||
* emulparams/elf32ltsmip.sh, * emulparams/elf32ltsmip_fbsd.sh,
|
||
* emulparams/elf32ltsmipn32.sh, * emulparams/elf32ltsmipn32_fbsd.sh,
|
||
* emulparams/elf32microblazeel.sh, * emulparams/elf32or1k_linux.sh,
|
||
* emulparams/elf32ppc.sh, * emulparams/elf32ppc_fbsd.sh,
|
||
* emulparams/elf32ppccommon.sh, * emulparams/elf32ppclinux.sh,
|
||
* emulparams/elf32ppcnto.sh, * emulparams/elf32ppcsim.sh,
|
||
* emulparams/elf32ppcvxworks.sh, * emulparams/elf32ppcwindiss.sh,
|
||
* emulparams/elf32tilegx_be.sh, * emulparams/elf64_ia64_fbsd.sh,
|
||
* emulparams/elf64_sparc_fbsd.sh, * emulparams/elf64_sparc_sol2.sh,
|
||
* emulparams/elf64alpha_fbsd.sh, * emulparams/elf64alpha_nbsd.sh,
|
||
* emulparams/elf64bmip-defs.sh, * emulparams/elf64bmip.sh,
|
||
* emulparams/elf64btsmip.sh, * emulparams/elf64btsmip_fbsd.sh,
|
||
* emulparams/elf64lppc.sh, * emulparams/elf64lriscv-defs.sh,
|
||
* emulparams/elf64lriscv.sh, * emulparams/elf64lriscv_lp64.sh,
|
||
* emulparams/elf64lriscv_lp64f.sh, * emulparams/elf64ltsmip.sh,
|
||
* emulparams/elf64ltsmip_fbsd.sh, * emulparams/elf64ppc.sh,
|
||
* emulparams/elf64ppc_fbsd.sh, * emulparams/elf64rdos.sh,
|
||
* emulparams/elf64tilegx_be.sh, * emulparams/elf_i386.sh,
|
||
* emulparams/elf_i386_be.sh, * emulparams/elf_i386_fbsd.sh,
|
||
* emulparams/elf_i386_ldso.sh, * emulparams/elf_i386_nacl.sh,
|
||
* emulparams/elf_i386_sol2.sh, * emulparams/elf_i386_vxworks.sh,
|
||
* emulparams/elf_iamcu.sh, * emulparams/elf_k1om.sh,
|
||
* emulparams/elf_k1om_fbsd.sh, * emulparams/elf_l1om.sh,
|
||
* emulparams/elf_l1om_fbsd.sh, * emulparams/elf_x86_64.sh,
|
||
* emulparams/elf_x86_64_cloudabi.sh,
|
||
* emulparams/elf_x86_64_fbsd.sh, * emulparams/elf_x86_64_nacl.sh,
|
||
* emulparams/elf_x86_64_sol2.sh, * emulparams/h8300helf.sh,
|
||
* emulparams/h8300helf_linux.sh, * emulparams/h8300hnelf.sh,
|
||
* emulparams/h8300self.sh, * emulparams/h8300self_linux.sh,
|
||
* emulparams/h8300snelf.sh, * emulparams/h8300sxelf.sh,
|
||
* emulparams/h8300sxelf_linux.sh, * emulparams/h8300sxnelf.sh,
|
||
* emulparams/hppanbsd.sh, * emulparams/hppaobsd.sh,
|
||
* emulparams/m32rlelf.sh, * emulparams/m32rlelf_linux.sh,
|
||
* emulparams/m68kelfnbsd.sh, * emulparams/mn10300.sh,
|
||
* emulparams/msp430X.sh, * emulparams/nds32belf.sh,
|
||
* emulparams/nds32belf16m.sh, * emulparams/nds32belf_linux.sh,
|
||
* emulparams/pjlelf.sh, * emulparams/ppclynx.sh,
|
||
* emulparams/score7_elf.sh, * emulparams/shelf_fd.sh,
|
||
* emulparams/shelf_linux.sh, * emulparams/shelf_nbsd.sh,
|
||
* emulparams/shelf_uclinux.sh, * emulparams/shelf_vxworks.sh,
|
||
* emulparams/shl.sh, * emulparams/shlelf.sh,
|
||
* emulparams/shlelf_fd.sh, * emulparams/shlelf_nbsd.sh,
|
||
* emulparams/shlelf_vxworks.sh: Use source_sh.
|
||
* genscripts.sh: Adjust for changed parameters. Emit dependencies
|
||
for e*.c to .deps/*.Pc.
|
||
(source_sh): New function, use it throughout to source scripts.
|
||
* genscrba.sh (source_em): Use source_sh.
|
||
|
||
2019-04-13 Alan Modra <amodra@gmail.com>
|
||
|
||
* configure.ac (TDIRS): Build up tdirs in this variable and
|
||
AC_SUBST, also using AM_SUBST_NOTMAKE.
|
||
* configure: Regenerate.
|
||
* Makefile.am (DISTCLEANFILES): Remove tdirs.
|
||
* Makefile.in: Regenerate.
|
||
|
||
2019-04-12 Nick Clifton <nickc@redhat.com>
|
||
|
||
PR 24450
|
||
* ld.texi (Output Section Attributes): Add ALIGN_WITH_INPUT to
|
||
example of section attributes.
|
||
|
||
2019-04-11 Faraz Shahbazker <fshahbazker@wavecomp.com>
|
||
|
||
* NEWS: Mention new option --no-print-map-discarded.
|
||
* ld.h (ld_config_type) <print_map_discarded>: New field.
|
||
* ldlang.c (lang_map): Conditionally output discarded sections
|
||
in map files based on configuration option.
|
||
* ldlex.h (option_values) <OPTION_PRINT_MAP_DISCARDED,
|
||
OPTION_NO_PRINT_MAP_DISCARDED>: New.
|
||
* ldmain.c (main): Enabled print_map_discarded by default.
|
||
* lexsup.c (ld_options): Add new command-line options.
|
||
(parse_args) <OPTION_NO_PRINT_MAP_DISCARDED,
|
||
OPTION_PRINT_MAP_DISCARDED>: New cases.
|
||
* ld.texi: Document new options.
|
||
* testsuite/ld-gc/gc.exp: Add new test.
|
||
* testsuite/ld-gc/skip-map-discarded.s: New file.
|
||
* testsuite/ld-gc/skip-map-discarded.d: New file.
|
||
* testsuite/ld-gc/skip-map-discarded.map: New file.
|
||
|
||
2019-04-11 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* ld.texi: Document -z cet-report=[none|warning|error].
|
||
* emulparams/cet.sh: Add -z cet-report=[none|warning|error].
|
||
* testsuite/ld-i386/i386.exp: Run -z cet-report=[warning|error]
|
||
tests.
|
||
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet1.d: New file.
|
||
* testsuite/ld-i386/property-x86-cet2a.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet2b.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet3a.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet3b.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet4a.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet4b.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet5a.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet5b.d: Likewise.
|
||
* testsuite/ld-i386/property-x86-cet6.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet.s: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet1-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet1.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet2a-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet2a.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet2b-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet2b.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet3a-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet3a.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet3b-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet3b.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet4a-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet4a.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet4b-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet4b.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet5a-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet5a.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet5b-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet5b.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet6-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/property-x86-cet6.d: Likewise.
|
||
|
||
2019-04-11 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* testsuite/config/default.exp (STATIC_PIE_LDFLAGS): New. Set
|
||
to "-static-pie" if target compiler supports it.
|
||
* testsuite/ld-elf/elf.exp: Run -static-pie tests if
|
||
$STATIC_PIE_LDFLAGS isn't empty.
|
||
* testsuite/ld-ifunc/ifunc.exp: Likewise.
|
||
|
||
2019-04-11 Tamar Christina <tamar.christina@arm.com>
|
||
|
||
PR ld/24302
|
||
* testsuite/ld-aarch64/aarch64-elf.exp: Add new test.
|
||
* testsuite/ld-aarch64/tls-relax-gdesc-le-now.d: New test.
|
||
|
||
2019-04-10 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* scripttempl/elf.sc (CREATE_PIC): New. Set for CREATE_SHLIB or
|
||
CREATE_PIE.
|
||
(__rel_iplt_start): Don't define for CREATE_PIC.
|
||
(__rel_iplt_end): Likewise.
|
||
(__rela_iplt_start): Likewise.
|
||
(__rela_iplt_end): Likewise.
|
||
|
||
2019-04-10 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-elf/shared.exp: Don't xfail PR ld/20995 for
|
||
powerpc-nto.
|
||
|
||
2019-04-10 Alan Modra <amodra@gmail.com>
|
||
|
||
* emultempl/cskyelf.em (csk_elf_before_parse): New function,
|
||
setting use_branch_stub false for linux.
|
||
(csky_elf_create_output_section_statements): Do emit this
|
||
function and all others in the file for linux, plus the branch
|
||
option control. Disable branch stubs when non-ELF.
|
||
|
||
2019-04-10 Alan Modra <amodra@gmail.com>
|
||
|
||
* Makefile.am (eskyelf.c, eskyelf_linux.c): Depend on cskyelf.em.
|
||
(ecskyelf_linux.c): Depend on cskyelf.sh.
|
||
(eelf32microblazeel.c): Depend on elf32microblaze.sh.
|
||
* Makefile.in: Regenerate.
|
||
* emulparams/cskyelf.sh: Comment regarding cskelf_linux.sh.
|
||
(PAGE_SIZE): Don't define.
|
||
* emulparams/cskyelf_linux.sh: Source sckyelf.sh, leaving just
|
||
the differing variable defs/undefs.
|
||
* emulparams/elf32mcore.sh (PAGE_SIZE): Don't define.
|
||
* emulparams/elf32microblaze.sh: Comment re. elf32microblazeel.sh.
|
||
(OUTPUT_FORMAT): Use BIG_OUTPUT_FORMAT.
|
||
(PAGE_SIZE): Don't define.
|
||
* emulparams/elf32microblazeel.sh: Source elf32microblaze.sh,
|
||
leaving just the differing OUTPUT_FORMAT.
|
||
|
||
2019-04-10 Alan Modra <amodra@gmail.com>
|
||
|
||
* po/BLD-POTFILES.in: Regenerate.
|
||
|
||
2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* testsuite/ld-elf/shared.exp: XFAIL PR ld/20995 tests for
|
||
lynxos and nto targets.
|
||
|
||
2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* Makefile.am (ALL_EMULATION_SOURCES): Remove eelf_i386_chaos.c.
|
||
(eelf_i386_chaos.c): Removed.
|
||
* Makefile.in: Regenerated.
|
||
* configure.tgt: Remove i[3-7]86-*-kaos*.
|
||
* emulparams/elf_i386_chaos.sh: Removed.
|
||
|
||
2019-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* emulparams/elf_i386_be.sh (EXTRA_EM_FILE): New.
|
||
* emulparams/i386moss.sh (EXTRA_EM_FILE): Likewise.
|
||
|
||
2019-04-08 Alan Modra <amodra@gmail.com>
|
||
|
||
* emulparams/elf64rdos.sh (EXTRA_EM_FILE): Define.
|
||
* emulparams/i386lynx.sh (EXTRA_EM_FILE): Define.
|
||
* emulparams/i386nto.sh (EXTRA_EM_FILE): Define.
|
||
|
||
2019-04-06 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
* Makefile.am (ELF_X86_DEPS): Add $(srcdir)/emultempl/elf-x86.em.
|
||
(eelf_i386_sol2.c): Also depend on
|
||
$(srcdir)/emultempl/solaris2-x86.em.
|
||
(eelf_x86_64_sol2.c): Likewise.
|
||
* Makefile.in: Regenerated.
|
||
* emulparams/call_nop.sh: Set x86-specific linker options via
|
||
params.
|
||
* emulparams/cet.sh: Likewise.
|
||
* emulparams/reloc_overflow.sh: Likewise.
|
||
* emulparams/elf32_x86_64.sh (EXTRA_EM_FILE): New. Set to
|
||
"elf-x86".
|
||
* emulparams/elf_i386.sh: Likewise.
|
||
* emulparams/elf_i386_be.sh: Likewise.
|
||
* emulparams/elf_i386_chaos.sh: Likewise.
|
||
* emulparams/elf_i386_ldso.sh: Likewise.
|
||
* emulparams/elf_i386_vxworks.sh: Likewise.
|
||
* emulparams/elf_iamcu.sh: Likewise.
|
||
* emulparams/elf_k1om.sh: Likewise.
|
||
* emulparams/elf_l1om.sh: Likewise.
|
||
* emulparams/elf_x86_64.sh: Likewise.
|
||
* emulparams/elf_i386_sol2.sh (EXTRA_EM_FILE): Changed to
|
||
"solaris2-x86".
|
||
* emulparams/elf_x86_64_sol2.sh: Likewise.
|
||
* emultempl/elf-x86.em: New file.
|
||
* emultempl/solaris2-x86.em: Likewise.
|
||
* emultempl/elf32.em (gld${EMULATION_NAME}_before_parse): Don't
|
||
set link_info.call_nop_byte.
|
||
|
||
2019-04-05 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-powerpc/tlsexe32.d: Remove trailing spaces.
|
||
* testsuite/ld-powerpc/tlsopt5.d: Likewise.
|
||
* testsuite/ld-powerpc/tlsopt5_32.d: Likewise.
|
||
|
||
2019-04-03 Alan Modra <amodra@gmail.com>
|
||
|
||
PR 24411
|
||
ldlex.l (SYMBOLNAMECHAR1): Don't match '/'.
|
||
(<EXPRESSION>"/DISCARD/"): New.
|
||
|
||
2019-04-03 Alan Modra <amodra@gmail.com>
|
||
|
||
* ldlex.l: Formatting.
|
||
(CMDFILENAMECHAR, CMDFILENAMECHAR1): Delete.
|
||
(FILENAMECHAR1, SYMBOLNAMECHAR1, FILENAMECHAR, WILDCHAR),
|
||
(NOCFILENAMECHAR): Remove duplicate chars. Reorder.
|
||
(SYMBOLCHARN): Likewise. Rename to SYMBOLNAMECHAR.
|
||
(<INPUTLIST>"$SYSROOT"..): Delete rule.
|
||
|
||
2019-03-29 Max Filippov <jcmvbkbc@gmail.com>
|
||
|
||
* testsuite/ld-xtensa/relax-undef-weak-pie-export-dynamic.d: New
|
||
test definition.
|
||
* testsuite/ld-xtensa/xtensa.exp
|
||
(relax-undef-weak-pie-export-dynamic): Add new test.
|
||
|
||
2019-03-26 Martin Liska <mliska@suse.cz>
|
||
|
||
* plugin.c (get_symbols): Add lto_kind_str, lto_resolution_str,
|
||
lto_visibility_str and use then to inform about plugin-symbols.
|
||
* testsuite/ld-plugin/plugin-12.d: Adjust expected pattern.
|
||
|
||
2019-03-25 Tamar Christina <tamar.christina@arm.com>
|
||
|
||
* testsuite/ld-arm/jump-reloc-veneers-cond-long.d: Update disassembly.
|
||
* testsuite/ld-arm/jump-reloc-veneers-long.d: Update disassembly.
|
||
|
||
2019-03-21 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* testsuite/ld-aarch64/aarch64-elf.exp: Add new test.
|
||
* testsuite/ld-aarch64/bti-plt-1.s: Add .ifdef for PAC note section.
|
||
* testsuite/ld-aarch64/bti-plt-6.d: Update warning.
|
||
* testsuite/ld-aarch64/bti-plt-7.d: Likewise.
|
||
* testsuite/ld-aarch64/bti-warn.d: New test.
|
||
|
||
2019-03-21 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-elf/fini2.s: Reduce alignment.
|
||
* testsuite/ld-elf/fini3.s: Likewise.
|
||
* testsuite/ld-elf/finin.s: Likewise.
|
||
* testsuite/ld-elf/init2.s: Likewise.
|
||
* testsuite/ld-elf/init3.s: Likewise.
|
||
* testsuite/ld-elf/initn.s: Likewise.
|
||
* testsuite/ld-elf/pr14156a.d: Don't xfail m68hc1*-* or xgate-*.
|
||
* testsuite/ld-elf/pr14156b.d: Don't xfail xgate-*.
|
||
|
||
2019-03-21 Alan Modra <amodra@gmail.com>
|
||
|
||
* scripttempl/alpha.sc, * scripttempl/armbpabi.sc,
|
||
* scripttempl/crisaout.sc, * scripttempl/elf32cr16.sc,
|
||
* scripttempl/elf32crx.sc, * scripttempl/elf32xc16x.sc,
|
||
* scripttempl/elf32xc16xl.sc, * scripttempl/elf32xc16xs.sc,
|
||
* scripttempl/elf64hppa.sc, * scripttempl/elf_chaos.sc,
|
||
* scripttempl/elfarc.sc, * scripttempl/elfarcv2.sc,
|
||
* scripttempl/elfd30v.sc, * scripttempl/elfm68hc11.sc,
|
||
* scripttempl/elfm68hc12.sc, * scripttempl/elfm9s12z.sc,
|
||
* scripttempl/elfmicroblaze.sc, * scripttempl/elfxgate.sc,
|
||
* scripttempl/elfxtensa.sc, * scripttempl/epiphany_4x4.sc,
|
||
* scripttempl/ft32.sc, * scripttempl/i386beos.sc,
|
||
* scripttempl/iq2000.sc, * scripttempl/mcorepe.sc,
|
||
* scripttempl/mep.sc, * scripttempl/mips.sc, * scripttempl/moxie.sc,
|
||
* scripttempl/pe.sc, * scripttempl/pep.sc, * scripttempl/ppcpe.sc,
|
||
* scripttempl/tic4xcoff.sc, * scripttempl/tic80coff.sc,
|
||
* scripttempl/v850.sc, * scripttempl/v850_rh850.sc,
|
||
* scripttempl/visium.sc, * scripttempl/xstormy16.sc: Add KEEP and
|
||
SORT_NONE to .init and .fini wildcards.
|
||
* scripttempl/elf32xc16x.sc,
|
||
* scripttempl/elf32xc16xl.sc,
|
||
* scripttempl/elf32xc16xs.sc: Add .fini wildcard.
|
||
* scripttempl/elf_chaos.sc: Add .init output section.
|
||
* scripttempl/elfd30v.sc: Remove duplicate .init.
|
||
* scripttempl/elfm68hc11.sc, * scripttempl/elfm68hc12.sc,
|
||
* scripttempl/elfm9s12z.sc, * scripttempl/elfxgate.sc: Remove
|
||
duplicate .init, and add .fini wildcard.
|
||
* scripttempl/ppcpe.sc (INIT, FINI): Delete.
|
||
* ldlang.c (update_wild_statements): Special case .init and
|
||
.fini in the wildcard, not the output section.
|
||
|
||
2019-03-21 Alan Modra <amodra@gmail.com>
|
||
|
||
* emulparams/elf32lm32fd.sh (DYNAMIC_LINK): Undef.
|
||
|
||
2019-03-21 Alan Modra <amodra@gmail.com>
|
||
|
||
* ldlang.c (lang_size_sections_1): Set SEC_KEEP on
|
||
create_object_symbols_section.
|
||
* testsuite/ld-elf/pr22319.d: Don't xfail dlx.
|
||
|
||
2019-03-18 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-elf/merge.d: Remove csky from xfails, add moxie.
|
||
* testsuite/ld-elf/pr21884.d: Remove csky from xfails.
|
||
* testsuite/ld-elf/shared.exp: Add csky to list not xfailing pr22374.
|
||
* testsuite/ld-unique/pr21529.d: Remove csky from xfails
|
||
|
||
2019-03-15 Nick Clifton <nickc@redhat.com>
|
||
|
||
PR 24262
|
||
* ld.texi (-plugin): Correct the path used to locate linker
|
||
plugins.
|
||
|
||
2019-03-13 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* NEWS: Document --pac-plt.
|
||
* emultempl/aarch64elf.em (OPTION_PAC_PLT): New.
|
||
(PARSE_AND_LIST_LONGOPTS, PARSE_AND_LIST_OPTIONS): Add pac-plt.
|
||
(PARSE_AND_LIST_ARGS_CASES): Handle OPTION_PAC_PLT.
|
||
* testsuite/ld-aarch64/aarch64-elf.exp: Add the following tests.
|
||
* testsuite/ld-aarch64/bti-pac-plt-1.d: New test.
|
||
* testsuite/ld-aarch64/bti-pac-plt-2.d: New test.
|
||
* testsuite/ld-aarch64/pac-plt-1.d: New test.
|
||
* testsuite/ld-aarch64/pac-plt-2.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-1.s: Add .ifndef directive.
|
||
|
||
2019-03-13 Sudakshina Das <sudi.das@arm.com>
|
||
Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||
|
||
* NEWS: Document --force-bti.
|
||
* emultempl/aarch64elf.em (plt_type, bti_type, OPTION_FORCE_BTI): New.
|
||
(PARSE_AND_LIST_SHORTOPTS, PARSE_AND_LIST_OPTIONS): Add force-bti.
|
||
(PARSE_AND_LIST_ARGS_CASES): Handle OPTION_FORCE_BTI.
|
||
* testsuite/ld-aarch64/aarch64-elf.exp: Add all the tests below.
|
||
* testsuite/ld-aarch64/bti-plt-1.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-1.s: New test.
|
||
* testsuite/ld-aarch64/bti-plt-2.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-3.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-4.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-5.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-6.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-7.d: New test.
|
||
* testsuite/ld-aarch64/bti-plt-so.s: New test.
|
||
* testsuite/ld-aarch64/bti-plt.ld: New test.
|
||
|
||
2019-03-13 Sudakshina Das <sudi.das@arm.com>
|
||
|
||
* NEWS: Document GNU_PROPERTY_AARCH64_FEATURE_1_BTI and
|
||
GNU_PROPERTY_AARCH64_FEATURE_1_PAC.
|
||
* testsuite/ld-aarch64/aarch64-elf.exp: Add run commands for new tests.
|
||
* testsuite/ld-aarch64/property-bti-pac1.d: New test.
|
||
* testsuite/ld-aarch64/property-bti-pac1.s: New test.
|
||
* testsuite/ld-aarch64/property-bti-pac2.d: New test.
|
||
* testsuite/ld-aarch64/property-bti-pac2.s: New test.
|
||
* testsuite/ld-aarch64/property-bti-pac3.d: New test.
|
||
|
||
2019-03-13 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24322
|
||
* testsuite/ld-i386/i386.exp: Run PR ld/24322 tests.
|
||
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
||
* testsuite/ld-i386/pr24322a.d: New file.
|
||
* testsuite/ld-i386/pr24322b.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24322a-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24322a.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24322b-x32.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24322b.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24322a.s: Likewise.
|
||
* testsuite/ld-x86-64/pr24322b.s: Likewise.
|
||
* testsuite/ld-x86-64/pr24322c.s: Likewise.
|
||
|
||
2019-03-06 Nick Bowler <nbowler@draconx.ca>
|
||
|
||
PR 24289
|
||
* ldexp.c (fold_name): Allow lookups of the LENGTH and ORIGIN
|
||
attributes during the first phase.
|
||
|
||
2019-03-01 Andreas Krebbel <krebbel@linux.ibm.com>
|
||
|
||
This reverts commit 5a12586d44fa8d5dfc74cbca4f2f36a273a16335.
|
||
2019-01-14 Maamoun Tarsha <maamountk@hotmail.com>
|
||
|
||
PR 20113
|
||
* emulparams/elf64_s390.sh (SEPARATE_GOTPLT): Define.
|
||
* emulparams/elf_s390.sh (SEPARATE_GOTPLT): Define.
|
||
* testsuite/ld-s390/gotreloc_31-1.dd: Update expected output.
|
||
* testsuite/ld-s390/tlsbin.dd: Likewise.
|
||
* testsuite/ld-s390/tlsbin.rd: Likewise.
|
||
* testsuite/ld-s390/tlsbin.sd: Likewise.
|
||
* testsuite/ld-s390/tlsbin_64.dd: Likewise.
|
||
* testsuite/ld-s390/tlsbin_64.rd: Likewise.
|
||
* testsuite/ld-s390/tlsbin_64.sd: Likewise.
|
||
* testsuite/ld-s390/tlspic.dd: Likewise.
|
||
* testsuite/ld-s390/tlspic.rd: Likewise.
|
||
* testsuite/ld-s390/tlspic.sd: Likewise.
|
||
* testsuite/ld-s390/tlspic_64.dd: Likewise.
|
||
* testsuite/ld-s390/tlspic_64.rd: Likewise.
|
||
* testsuite/ld-s390/tlspic_64.sd: Likewise.
|
||
* testsuite/ld-s390/s390.exp: Skip s390 tests for tpf targets.
|
||
|
||
2019-02-27 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24276
|
||
* testsuite/ld-i386/i386.exp: Run PR ld/24276 test.
|
||
* testsuite/ld-x86-64/x86-64.exp: Likewise.
|
||
* testsuite/ld-i386/pr24276.dso: New file.
|
||
* testsuite/ld-i386/pr24276.warn: Likewise.
|
||
* testsuite/ld-x86-64/pr24276.dso: Likewise.
|
||
* testsuite/ld-x86-64/pr24276.warn: Likewise.
|
||
|
||
2019-02-20 Eric Tsai <erictsai@cadence.com>
|
||
|
||
* testsuite/ld-xtensa/call_overflow.d: New test definition.
|
||
* testsuite/ld-xtensa/call_overflow1.s: New test source.
|
||
* testsuite/ld-xtensa/call_overflow2.s: New test source.
|
||
* testsuite/ld-xtensa/call_overflow3.s: New test source.
|
||
* testsuite/ld-xtensa/xtensa.exp: Add call_overflow test.
|
||
|
||
2019-02-14 Thomas Schwinge <thomas@codesourcery.com>
|
||
|
||
* testsuite/ld-elf/elf.exp: Remove Hurd XFAILs.
|
||
|
||
2019-02-12 Nick Clifton <nickc@redhat.com>
|
||
|
||
* po/fr.po: Updated French translation.
|
||
|
||
2019-02-09 Vineet Gupta <vgupta@synopsys.com>
|
||
|
||
* emultempl/arclinux.em: Delete special INIT/FINI handling.
|
||
|
||
2019-02-07 Nick Clifton <nickc@redhat.com>
|
||
|
||
PR 24175
|
||
* ld.texi (Options): Add missing word to the description of the
|
||
--start-group option.
|
||
|
||
2019-02-06 Alan Modra <amodra@gmail.com>
|
||
|
||
PR ld/24008
|
||
* testsuite/ld-scripts/pr24008.d: Pass with extra target
|
||
defined symbols.
|
||
|
||
2019-02-05 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24151
|
||
* testsuite/ld-x86-64/pr24151a-x32.d: New file.
|
||
* testsuite/ld-x86-64/pr24151a.d: Likewise.
|
||
* testsuite/ld-x86-64/pr24151a.s: Likewise.
|
||
* testsuite/ld-x86-64/x86-64.exp: Run pr24151a and pr24151a-x32.
|
||
|
||
2019-01-31 Alan Modra <amodra@gmail.com>
|
||
|
||
* NEWS: Mention -t change.
|
||
* ld.texi (--trace/-t): Expand documentation a little.
|
||
|
||
2019-01-29 H.J. Lu <hongjiu.lu@intel.com>
|
||
|
||
PR ld/24008
|
||
* testsuite/ld-scripts/defined.exp: Run pr24008.
|
||
* testsuite/ld-scripts/pr24008.d: New file.
|
||
* testsuite/ld-scripts/pr24008.map: Likewise.
|
||
* testsuite/ld-scripts/pr24008.s: Likewise.
|
||
* testsuite/ld-scripts/pr24008.t: Likewise.
|
||
|
||
2019-01-29 Eric Botcazou <ebotcazou@adacore.com>
|
||
|
||
* testsuite/ld-ifunc/ifunc.exp: Skip pr23169 on SPARC.
|
||
|
||
2019-01-28 Alan Modra <amodra@gmail.com>
|
||
|
||
PR 24008
|
||
* ldexp.h (lang_phase_type): Add lang_fixed_phase_enum.
|
||
* ldexp.c (fold_name): Move expld.assign_name check later to
|
||
avoid an extra lookup.
|
||
(exp_fold_tree_1): When lang_fixed_phase_enum, don't change symbol
|
||
values, and don't clear expld.assign_name.
|
||
* ldlang.c (lang_map): Set expld.phase to lang_fixed_phase_enum.
|
||
(print_assignment): Resolve entire assignment expression.
|
||
Don't access symbol u.def unless symbol is defined.
|
||
|
||
2019-01-25 Nick Clifton <nickc@redhat.com>
|
||
|
||
* po/bg.po: Updated Bulgarian translation.
|
||
|
||
2019-01-23 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||
|
||
* ld.texi (--wrap): Add warning that LTO may make this feature
|
||
ineffective.
|
||
|
||
2019-01-21 Nick Clifton <nickc@redhat.com>
|
||
|
||
* po/uk.po: Updated Ukranian translation.
|
||
* po/pr_BR.po: Updated Brazilian Portuguese translation.
|
||
|
||
2019-01-21 Nick Clifton <nickc@redhat.com>
|
||
|
||
PR 24108
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-failed-01.d: Update
|
||
expected error message.
|
||
|
||
2019-01-19 Nick Clifton <nickc@redhat.com>
|
||
|
||
* configure: Regenerate.
|
||
* po/ld.pot: Regenerate.
|
||
|
||
2018-06-24 Nick Clifton <nickc@redhat.com>
|
||
|
||
2.32 branch created.
|
||
|
||
2019-01-16 Kito Cheng <kito@andestech.com>
|
||
|
||
* testsuite/ld-elf/orphan-region.d: XFAIL for RISC-V, because add new
|
||
section.
|
||
* testsuite/ld-riscv-elf/ld-riscv-elf.exp: Add new tests.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-01.d: New test.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-01a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-01b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-02.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-02a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-02b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-03.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-03a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-03b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-failed-01.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-failed-01a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-arch-failed-01b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-priv-spec-a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-priv-spec-b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-priv-spec.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-stack-align-a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-stack-align-b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-stack-align-failed-a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-stack-align-failed-b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-stack-align-failed.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-stack-align.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-01.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-01a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-01b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-02.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-02a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-02b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-03.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-03a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-03b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-04.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-04a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-04b.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-05.d: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-05a.s: Likewise.
|
||
* testsuite/ld-riscv-elf/attr-merge-strict-align-05b.s: Likewise.
|
||
|
||
2019-01-14 Maamoun Tarsha <maamountk@hotmail.com>
|
||
|
||
PR 20113
|
||
* emulparams/elf64_s390.sh (SEPARATE_GOTPLT): Define.
|
||
* emulparams/elf_s390.sh (SEPARATE_GOTPLT): Define.
|
||
* testsuite/ld-s390/gotreloc_31-1.dd: Update expected output.
|
||
* testsuite/ld-s390/tlsbin.dd: Likewise.
|
||
* testsuite/ld-s390/tlsbin.rd: Likewise.
|
||
* testsuite/ld-s390/tlsbin.sd: Likewise.
|
||
* testsuite/ld-s390/tlsbin_64.dd: Likewise.
|
||
* testsuite/ld-s390/tlsbin_64.rd: Likewise.
|
||
* testsuite/ld-s390/tlsbin_64.sd: Likewise.
|
||
* testsuite/ld-s390/tlspic.dd: Likewise.
|
||
* testsuite/ld-s390/tlspic.rd: Likewise.
|
||
* testsuite/ld-s390/tlspic.sd: Likewise.
|
||
* testsuite/ld-s390/tlspic_64.dd: Likewise.
|
||
* testsuite/ld-s390/tlspic_64.rd: Likewise.
|
||
* testsuite/ld-s390/tlspic_64.sd: Likewise.
|
||
* testsuite/ld-s390/s390.exp: Skip s390 tests for tpf targets.
|
||
|
||
2019-01-14 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||
|
||
* ld.texi (--wrap): Add example to emphasise that only undefined
|
||
references are replaced by the linker.
|
||
|
||
2019-01-09 Nick Clifton <nickc@redhat.com>
|
||
|
||
* po/es.po: Updated Spanish translation.
|
||
|
||
2019-01-09 Andrew Paprocki <andrew@ishiboo.com>
|
||
|
||
* configure: Regenerate.
|
||
|
||
2019-01-08 Alan Modra <amodra@gmail.com>
|
||
|
||
* testsuite/ld-elf/sec64k.exp: Use . rather than $objdir in
|
||
generated source file names.
|
||
* testsuite/ld-m68k/m68k-got.exp: Likewise.
|
||
|
||
2019-01-01 Alan Modra <amodra@gmail.com>
|
||
|
||
Update year range in copyright notice of all files.
|
||
|
||
For older changes see ChangeLog-2018
|
||
|
||
Copyright (C) 2019 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:
|