summaryrefslogtreecommitdiff
path: root/binutils/objcopy.c
diff options
context:
space:
mode:
authorKai Tietz <kai.tietz@onevision.com>2012-10-18 17:29:54 +0000
committerKai Tietz <kai.tietz@onevision.com>2012-10-18 17:29:54 +0000
commit2ed9700cf81c88dff0a9b575a1c3fd17bc4c2635 (patch)
tree2fbc2983323b8c134242891d9df8e4b9c46cfedc /binutils/objcopy.c
parent2e5d8212305173a4078e6530ef769c8b9075e496 (diff)
downloadbinutils-redhat-2ed9700cf81c88dff0a9b575a1c3fd17bc4c2635.tar.gz
* objcopy.c (is_strip_section_1): Don't strip
.reloc section by default.
Diffstat (limited to 'binutils/objcopy.c')
-rw-r--r--binutils/objcopy.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/binutils/objcopy.c b/binutils/objcopy.c
index 40250adc4b..f44ebcd942 100644
--- a/binutils/objcopy.c
+++ b/binutils/objcopy.c
@@ -102,7 +102,7 @@ enum strip_action
};
/* Which symbols to remove. */
-static enum strip_action strip_symbols;
+static enum strip_action strip_symbols = STRIP_UNDEF;
enum locals_action
{
@@ -977,7 +977,13 @@ is_strip_section_1 (bfd *abfd ATTRIBUTE_UNUSED, asection *sec)
|| strip_symbols == STRIP_ALL
|| discard_locals == LOCALS_ALL
|| convert_debugging)
- return TRUE;
+ {
+ /* By default we don't want to strip .reloc section.
+ This section has for pe-coff special meaning. See
+ pe-dll.c file in ld, and peXXigen.c in bfd for details. */
+ if (strcmp (bfd_get_section_name (abfd, sec), ".reloc") != 0)
+ return TRUE;
+ }
if (strip_symbols == STRIP_DWO)
return is_dwo_section (abfd, sec);