diff options
author | Charles Wilson <cygwin@cwilson.fastmail.fm> | 2001-08-02 23:07:10 +0000 |
---|---|---|
committer | Charles Wilson <cygwin@cwilson.fastmail.fm> | 2001-08-02 23:07:10 +0000 |
commit | 3dcef5eedc886dae8a168ca841e2882f9b4c9afb (patch) | |
tree | 249524fccb5044f8f1e1734a0a3409178f592bcd /include | |
parent | a7061f7f5064648b795c5e6a3bb18dfd1bbca5a5 (diff) | |
download | cygnal-3dcef5eedc886dae8a168ca841e2882f9b4c9afb.tar.gz cygnal-3dcef5eedc886dae8a168ca841e2882f9b4c9afb.tar.bz2 cygnal-3dcef5eedc886dae8a168ca841e2882f9b4c9afb.zip |
* bfdlink.h (struct bfd_link_info): add new boolean
field pei386_auto_import.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/bfdlink.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 812e6fcde..b76bfff5e 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2001-08-02 Charles Wilson <cwilson@ece.gatech.edu> + + * bfdlink.h (struct bfd_link_info): add new boolean + field pei386_auto_import. + 2001-08-01 Aldy Hernandez <aldyh@redhat.com> * opcode/mips.h (INSN_ISA_MASK): Nuke bits 12-15. diff --git a/include/bfdlink.h b/include/bfdlink.h index 3308f826e..56b1fe458 100644 --- a/include/bfdlink.h +++ b/include/bfdlink.h @@ -274,6 +274,10 @@ struct bfd_link_info /* May be used to set DT_FLAGS_1 for ELF. */ bfd_vma flags_1; + + /* true if auto-import thunks for DATA items in pei386 DLLs + should be generated/linked against. */ + boolean pei386_auto_import; }; /* This structures holds a set of callback functions. These are |