From: H.J. Lu Date: Mon, 12 Feb 2001 00:23:37 +0000 (+0000) Subject: 2001-02-11 H.J. Lu X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=f0e1d18ad39ba877a6677895e02b5a3ff9c9bf04;p=deliverable%2Fbinutils-gdb.git 2001-02-11 H.J. Lu * elflink.h (elf_bfd_final_link): Use file_align for STMTAB alignment. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a96c3dac05..f9cc7a8b2c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2001-02-11 H.J. Lu + + * elflink.h (elf_bfd_final_link): Use file_align for STMTAB + alignment. + 2001-02-11 Maciej W. Rozycki * elf32-mips.c (mips_elf_create_dynamic_relocation): Undo patch diff --git a/bfd/elflink.h b/bfd/elflink.h index 9464ff2e10..5cbbcbbe6c 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -4435,7 +4435,7 @@ elf_bfd_final_link (abfd, info) /* sh_link is set in assign_section_numbers. */ /* sh_info is set below. */ /* sh_offset is set just below. */ - symtab_hdr->sh_addralign = 4; /* FIXME: system dependent? */ + symtab_hdr->sh_addralign = bed->s->file_align; off = elf_tdata (abfd)->next_file_pos; off = _bfd_elf_assign_file_position_for_section (symtab_hdr, off, true);