Set page_size to 1 instead of 0 in the case file alignment value is zero.

This commit is contained in:
Nick Clifton
2003-12-01 18:46:21 +00:00
parent 5994185b33
commit 771e446b94
2 changed files with 10 additions and 0 deletions

View File

@ -3014,6 +3014,11 @@ coff_compute_section_file_positions (abfd)
if (coff_data (abfd)->link_info)
{
page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
/* If no file alignment has been set, default to one.
This repairs 'ld -r' for arm-wince-pe target. */
if (page_size == 0)
page_size = 1;
}
else
page_size = PE_DEF_FILE_ALIGNMENT;