From 34d2d0397582c6ce0d5a4df984a83766cd752c33 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Wed, 3 Oct 2001 15:11:47 +0000 Subject: [PATCH] Add support for -z nocopyreloc. --- include/ChangeLog | 4 ++++ include/bfdlink.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/include/ChangeLog b/include/ChangeLog index 99bd93202..030ebfe78 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2001-10-03 Vassili Karpov + + * bfdlink.h (struct bfd_link_info): Add nocopyreloc field. + 2001-09-24 Kaveh R. Ghazi * libiberty.h (reconcat): New function. diff --git a/include/bfdlink.h b/include/bfdlink.h index 9ada606e3..086559438 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; };