diff options
author | Alan Modra <amodra@gmail.com> | 2007-09-15 06:21:06 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-09-15 06:21:06 +0000 |
commit | 83e4970bb760a819e490875923d71a427f399976 (patch) | |
tree | 4deea741dd3471c9d4c710e139b087f83070425f /ld/emultempl | |
parent | 0bc43230d60765d9cc6d0e9bffef91ae6b956843 (diff) | |
download | gdb-83e4970bb760a819e490875923d71a427f399976.zip gdb-83e4970bb760a819e490875923d71a427f399976.tar.gz gdb-83e4970bb760a819e490875923d71a427f399976.tar.bz2 |
PR ld/5025
* emultempl/elf32.em (write_build_id_section): Correct test for
"missing" .note.gnu.build-id. Downgrade error to a warning if
it has been discarded.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/elf32.em | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 8838140..775458c 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -936,10 +936,11 @@ gld${EMULATION_NAME}_write_build_id_section (bfd *abfd) Elf_External_Note *e_note; asec = info->sec; - if (asec->output_section == NULL) + if (bfd_is_abs_section (asec->output_section)) { - einfo (_("%P: .note.gnu.build-id section missing")); - return FALSE; + einfo (_("%P: warning: .note.gnu.build-id section discarded," + " --build-id ignored.\n")); + return TRUE; } i_shdr = &elf_section_data (asec->output_section)->this_hdr; |