mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-10 01:25:30 +08:00
x86: Check target_id instead of elf_machine_code
Since both elf32-i386.c and elf64-x86-64.c support targets with different ELF_MACHINE_CODEs, _bfd_x86_elf_link_hash_table_create should check target_id instead of elf_machine_code. * elfxx-x86.c (_bfd_x86_elf_link_hash_table_create): Check target_id instead of elf_machine_code.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2017-08-30 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* elfxx-x86.c (_bfd_x86_elf_link_hash_table_create): Check
|
||||||
|
target_id instead of elf_machine_code.
|
||||||
|
|
||||||
2017-08-30 H.J. Lu <hongjiu.lu@intel.com>
|
2017-08-30 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* elf32-i386.c (ELF_DYNAMIC_INTERPRETER): Removed.
|
* elf32-i386.c (ELF_DYNAMIC_INTERPRETER): Removed.
|
||||||
|
@ -278,7 +278,7 @@ _bfd_x86_elf_link_hash_table_create (bfd *abfd)
|
|||||||
{
|
{
|
||||||
ret->r_info = elf32_r_info;
|
ret->r_info = elf32_r_info;
|
||||||
ret->r_sym = elf32_r_sym;
|
ret->r_sym = elf32_r_sym;
|
||||||
if (bed->elf_machine_code == EM_X86_64)
|
if (bed->target_id == X86_64_ELF_DATA)
|
||||||
{
|
{
|
||||||
ret->pointer_r_type = R_X86_64_32;
|
ret->pointer_r_type = R_X86_64_32;
|
||||||
ret->dynamic_interpreter = ELFX32_DYNAMIC_INTERPRETER;
|
ret->dynamic_interpreter = ELFX32_DYNAMIC_INTERPRETER;
|
||||||
|
Reference in New Issue
Block a user