diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c334e53307..c14a3bc491 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2017-10-09 H.J. Lu + + * elf32-bfin.c (bfin_size_dynamic_sections): Don't create the + .interp section with "ld --no-dynamic-linker". + 2017-10-09 Alan Modra PR 22212 diff --git a/bfd/elf32-bfin.c b/bfd/elf32-bfin.c index 09e50ce616..94c7c2a900 100644 --- a/bfd/elf32-bfin.c +++ b/bfd/elf32-bfin.c @@ -5336,7 +5336,7 @@ bfin_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED, if (elf_hash_table (info)->dynamic_sections_created) { /* Set the contents of the .interp section to the interpreter. */ - if (bfd_link_executable (info)) + if (bfd_link_executable (info) && !info->nointerp) { s = bfd_get_linker_section (dynobj, ".interp"); BFD_ASSERT (s != NULL);