Enable pei386_auto_import by default. Only print a info message about auto
imports being resilved if this feature was not requested via a command line switch.
This commit is contained in:
parent
381fb8baa1
commit
f43a747271
|
@ -1,3 +1,9 @@
|
||||||
|
2002-06-07 Charles Wilson <cwilson@ece.gatech.edu>
|
||||||
|
|
||||||
|
* bfdlink.h (struct bfd_link_info): Change type of
|
||||||
|
pei386_auto_import field to int so that -1 can mean enabled by
|
||||||
|
default and 1 can mean enabled by command line switch.
|
||||||
|
|
||||||
2002-06-06 DJ Delorie <dj@redhat.com>
|
2002-06-06 DJ Delorie <dj@redhat.com>
|
||||||
|
|
||||||
* hashtab.h (htab): Rearrange new members for backward
|
* hashtab.h (htab): Rearrange new members for backward
|
||||||
|
|
|
@ -288,9 +288,10 @@ struct bfd_link_info
|
||||||
/* May be used to set DT_FLAGS_1 for ELF. */
|
/* May be used to set DT_FLAGS_1 for ELF. */
|
||||||
bfd_vma flags_1;
|
bfd_vma flags_1;
|
||||||
|
|
||||||
/* True if auto-import thunks for DATA items in pei386 DLLs
|
/* Non-zero if auto-import thunks for DATA items in pei386 DLLs
|
||||||
should be generated/linked against. */
|
should be generated/linked against. Set to 1 if this feature
|
||||||
boolean pei386_auto_import;
|
is explicitly requested by the user, -1 if enabled by default. */
|
||||||
|
int pei386_auto_import;
|
||||||
|
|
||||||
/* True if non-PLT relocs should be merged into one reloc section
|
/* True if non-PLT relocs should be merged into one reloc section
|
||||||
and sorted so that relocs against the same symbol come together. */
|
and sorted so that relocs against the same symbol come together. */
|
||||||
|
|
Loading…
Reference in New Issue