mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-01-19 07:24:48 +00:00
* freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
instead of 32.
This commit is contained in:
parent
d70e31dd87
commit
c9d707578e
@ -1,3 +1,8 @@
|
||||
2009-07-01 Ian Lance Taylor <ian@airs.com>
|
||||
|
||||
* freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
|
||||
instead of 32.
|
||||
|
||||
2009-06-24 Ian Lance Taylor <iant@google.com>
|
||||
|
||||
PR 10156
|
||||
|
@ -68,15 +68,15 @@ Target_freebsd<size, big_endian>::do_adjust_elf_header(unsigned char* view,
|
||||
{
|
||||
if (this->osabi_ != elfcpp::ELFOSABI_NONE)
|
||||
{
|
||||
gold_assert(len == elfcpp::Elf_sizes<32>::ehdr_size);
|
||||
gold_assert(len == elfcpp::Elf_sizes<size>::ehdr_size);
|
||||
|
||||
elfcpp::Ehdr<32, false> ehdr(view);
|
||||
elfcpp::Ehdr<size, false> ehdr(view);
|
||||
unsigned char e_ident[elfcpp::EI_NIDENT];
|
||||
memcpy(e_ident, ehdr.get_e_ident(), elfcpp::EI_NIDENT);
|
||||
|
||||
e_ident[elfcpp::EI_OSABI] = this->osabi_;
|
||||
|
||||
elfcpp::Ehdr_write<32, false> oehdr(view);
|
||||
elfcpp::Ehdr_write<size, false> oehdr(view);
|
||||
oehdr.put_e_ident(e_ident);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user