diff options
author | Alan Modra <amodra@gmail.com> | 2023-06-23 08:48:38 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-06-23 21:02:48 +0930 |
commit | 027614abf11de9e79a335df4e1f9a788b7ab0063 (patch) | |
tree | 2a0d577b566f417470da667d65faead53b8f9373 /gold | |
parent | 0ec2cde4f48fbe19c72d0963101888743015041e (diff) | |
download | gdb-027614abf11de9e79a335df4e1f9a788b7ab0063.zip gdb-027614abf11de9e79a335df4e1f9a788b7ab0063.tar.gz gdb-027614abf11de9e79a335df4e1f9a788b7ab0063.tar.bz2 |
[GOLD] powerpc DT_RELACOUNT
DT_RELACOUNT was calculated incorrectly, and relative relocs not
sorted as they should be to the start of .rela.dyn, due to adding one
particular class of dynamic reloc using the wrong "add" method.
* powerpc.cc (Target_powerpc::Scan::global): Add relative
dyn relocs for ADDR64 and similar using add_global_relative.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/powerpc.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gold/powerpc.cc b/gold/powerpc.cc index aa2d9a1..0c15e1b 100644 --- a/gold/powerpc.cc +++ b/gold/powerpc.cc @@ -9005,9 +9005,14 @@ Target_powerpc<size, big_endian>::Scan::global( = target->rela_dyn_section(symtab, layout, is_ifunc); unsigned int dynrel = (is_ifunc ? elfcpp::R_POWERPC_IRELATIVE : elfcpp::R_POWERPC_RELATIVE); - rela_dyn->add_symbolless_global_addend( + // Use the "add" method that marks the reloc as being + // relative. This is proper here and in other places + // that add IRELATIVE relocs because those relocs go + // into a separate section that isn't sorted, so it + // doesn't matter that they are marked is_relative. + rela_dyn->add_global_relative( gsym, dynrel, output_section, object, data_shndx, - reloc.get_r_offset(), reloc.get_r_addend()); + reloc.get_r_offset(), reloc.get_r_addend(), false); } else { |