diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/bfdlink.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 23b8a07..f000f72 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2016-07-15 Thomas Preud'homme <thomas.preudhomme@arm.com> + + * bfdlink.h (struct bfd_link_info): Declare new ldscript_def and + out_implib_bfd fields. + 2016-07-14 Claudiu Zissulescu <claziss@synopsys.com> * elf/arc-reloc.def (ARC_SDA32): Don't use ME transformation. diff --git a/include/bfdlink.h b/include/bfdlink.h index b392d54..9b2194f 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -108,6 +108,9 @@ struct bfd_link_hash_entry in a linker script. */ unsigned int linker_def : 1; + /* Symbol defined in a linker script. */ + unsigned int ldscript_def : 1; + /* A union of information depending upon the type. */ union { @@ -532,6 +535,9 @@ struct bfd_link_info /* The output BFD. */ bfd *output_bfd; + /* The import library generated. */ + bfd *out_implib_bfd; + /* The list of input BFD's involved in the link. These are chained together via the link.next field. */ bfd *input_bfds; |