mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 04:29:49 +00:00
Fix file-alignment for objcopy for pe-coff
2014-08-22 Kai Tietz <ktietz@redhat.com> PR binutils/11822 * coffcode.h (coff_compute_section_file_positions): Keep FileAlignment valid as set.
This commit is contained in:
parent
7c343b48b2
commit
a4a027b7f4
@ -1,3 +1,9 @@
|
||||
2014-08-22 Kai Tietz <ktietz@redhat.com>
|
||||
|
||||
PR binutils/11822
|
||||
* coffcode.h (coff_compute_section_file_positions): Keep
|
||||
FileAlignment valid as set.
|
||||
|
||||
2014-08-22 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* elf-eh-frame.c (struct cie): Delete "output_sec" field.
|
||||
|
@ -3134,7 +3134,8 @@ coff_compute_section_file_positions (bfd * abfd)
|
||||
#ifdef COFF_IMAGE_WITH_PE
|
||||
int page_size;
|
||||
|
||||
if (coff_data (abfd)->link_info)
|
||||
if (coff_data (abfd)->link_info
|
||||
|| (pe_data (abfd) && pe_data (abfd)->pe_opthdr.FileAlignment))
|
||||
{
|
||||
page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user