* peicode.h (pe_mkobject_hook): Set DLL flag.

(pe_bfd_copy_private_bfd_data): Copy DLL flag.
This commit is contained in:
Ian Lance Taylor 1997-10-15 20:34:26 +00:00
parent 899f620488
commit fc1213aa0b
2 changed files with 8 additions and 1 deletions

View file

@ -1,5 +1,8 @@
Wed Oct 15 13:45:10 1997 Ian Lance Taylor <ian@cygnus.com>
* peicode.h (pe_mkobject_hook): Set DLL flag.
(pe_bfd_copy_private_bfd_data): Copy DLL flag.
* peicode.h (coff_swap_scnhdr_out): Set IMAGE_SCN_MEM_DISCARDABLE
for .stab* sections. Replace strlen of constant strings with
number.

View file

@ -1933,6 +1933,9 @@ pe_mkobject_hook (abfd, filehdr, aouthdr)
pe->real_flags = internal_f->f_flags;
if ((internal_f->f_flags & F_DLL) != 0)
pe->dll = 1;
#ifdef COFF_IMAGE_WITH_PE
if (aouthdr)
{
@ -1961,6 +1964,7 @@ pe_bfd_copy_private_bfd_data (ibfd, obfd)
return true;
pe_data (obfd)->pe_opthdr = pe_data (ibfd)->pe_opthdr;
pe_data (obfd)->dll = pe_data (ibfd)->dll;
return true;
}