mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
gdb: Don't assume r_ldsomap when r_version > 1 on Linux
The r_ldsomap field is specific to Solaris (part of librtld_db), and should never be accessed for Linux. glibc is planning to add a field to support multiple namespaces. But there will be no r_ldsomap when r_version is bumped to 2. Add linux_[ilp32|lp64]_fetch_link_map_offsets to set r_ldsomap_offset to -1 and use them for Linux targets. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=28236
This commit is contained in:
@ -1542,7 +1542,7 @@ mips_linux_init_abi (struct gdbarch_info info,
|
||||
set_gdbarch_get_longjmp_target (gdbarch,
|
||||
mips_linux_get_longjmp_target);
|
||||
set_solib_svr4_fetch_link_map_offsets
|
||||
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
||||
(gdbarch, linux_ilp32_fetch_link_map_offsets);
|
||||
tramp_frame_prepend_unwinder (gdbarch, µmips_linux_o32_sigframe);
|
||||
tramp_frame_prepend_unwinder (gdbarch,
|
||||
µmips_linux_o32_rt_sigframe);
|
||||
@ -1554,7 +1554,7 @@ mips_linux_init_abi (struct gdbarch_info info,
|
||||
set_gdbarch_get_longjmp_target (gdbarch,
|
||||
mips_linux_get_longjmp_target);
|
||||
set_solib_svr4_fetch_link_map_offsets
|
||||
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
||||
(gdbarch, linux_ilp32_fetch_link_map_offsets);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
/* These floatformats should probably be renamed. MIPS uses
|
||||
the same 128-bit IEEE floating point format that IA-64 uses,
|
||||
@ -1570,7 +1570,7 @@ mips_linux_init_abi (struct gdbarch_info info,
|
||||
set_gdbarch_get_longjmp_target (gdbarch,
|
||||
mips64_linux_get_longjmp_target);
|
||||
set_solib_svr4_fetch_link_map_offsets
|
||||
(gdbarch, svr4_lp64_fetch_link_map_offsets);
|
||||
(gdbarch, linux_lp64_fetch_link_map_offsets);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
/* These floatformats should probably be renamed. MIPS uses
|
||||
the same 128-bit IEEE floating point format that IA-64 uses,
|
||||
|
Reference in New Issue
Block a user