From cac153277184781566fe0da208c79e1b7661f876 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 4 May 2001 08:32:21 +0000 Subject: Set EF_ARM_HASENTRY if the start address is set. --- bfd/elf32-arm.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'bfd/elf32-arm.h') diff --git a/bfd/elf32-arm.h b/bfd/elf32-arm.h index 089d9d4..013054a 100644 --- a/bfd/elf32-arm.h +++ b/bfd/elf32-arm.h @@ -1019,6 +1019,18 @@ elf32_arm_final_link_relocate (howto, input_bfd, output_bfd, bfd_signed_vma signed_addend; struct elf32_arm_link_hash_table * globals; + /* If the start address has been set, then set the EF_ARM_HASENTRY + flag. Setting this more than once is redundant, but the cost is + not too high, and it keeps the code simple. + + The test is done here, rather than somewhere else, because the + start address is only set just before the final link commences. + + Note - if the user deliberately sets a start address of 0, the + flag will not be set. */ + if (bfd_get_start_address (output_bfd) != 0) + elf_elfheader (output_bfd)->e_flags |= EF_ARM_HASENTRY; + globals = elf32_arm_hash_table (info); dynobj = elf_hash_table (info)->dynobj; -- cgit v1.1