summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2001-10-03 15:11:47 +0000
committerAlan Modra <amodra@bigpond.net.au>2001-10-03 15:11:47 +0000
commit5bc398b6a177fbcc599141b5362889d3acd8b941 (patch)
tree816a776bf140358717693265bd7781e560cc2bf2 /include
parentfd1d30c48d4c799995ca6a528ef9ba4b1c064253 (diff)
downloadgdb-5bc398b6a177fbcc599141b5362889d3acd8b941.tar.gz
Add support for -z nocopyreloc.
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/bfdlink.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 99bd9320278..030ebfe788c 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2001-10-03 Vassili Karpov <malc@pulsesoft.com>
+
+ * bfdlink.h (struct bfd_link_info): Add nocopyreloc field.
+
2001-09-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* libiberty.h (reconcat): New function.
diff --git a/include/bfdlink.h b/include/bfdlink.h
index 9ada606e31d..0865594380d 100644
--- a/include/bfdlink.h
+++ b/include/bfdlink.h
@@ -294,6 +294,10 @@ struct bfd_link_info
and sorted so that relocs against the same symbol come together. */
boolean combreloc;
+ /* True if executable should not contain copy relocs.
+ Setting this true may result in a non-sharable text segment. */
+ boolean nocopyreloc;
+
/* How many spare .dynamic DT_NULL entries should be added? */
unsigned int spare_dynamic_tags;
};