diff options
author | Nick Clifton <nickc@redhat.com> | 2003-12-19 10:01:59 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-12-19 10:01:59 +0000 |
commit | c4bf77942dea9cad22426964bf32c46cbc443705 (patch) | |
tree | e552c4a92b110af91ebbc4f5d65feda34520b281 /bfd/coffcode.h | |
parent | a2379359b4aef4f03b1be53bbc76518b9ff4cf2b (diff) | |
download | gdb-c4bf77942dea9cad22426964bf32c46cbc443705.zip gdb-c4bf77942dea9cad22426964bf32c46cbc443705.tar.gz gdb-c4bf77942dea9cad22426964bf32c46cbc443705.tar.bz2 |
Do not mark .reloc sections as containing debug info.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index ccac05b..15d9709 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -1064,7 +1064,11 @@ styp_to_sec_flags (abfd, hdr, name, section, flags_ptr) sec_flags &= ~ SEC_READONLY; break; case IMAGE_SCN_MEM_DISCARDABLE: - sec_flags |= SEC_DEBUGGING; + /* The MS PE spec sets the DISCARDABLE flag on .reloc sections + but we do not want them to be labelled as debug section, since + then strip would remove them. */ + if (strncmp (name, ".reloc", sizeof ".reloc" - 1) != 0) + sec_flags |= SEC_DEBUGGING; break; case IMAGE_SCN_MEM_SHARED: sec_flags |= SEC_SHARED; |