* peicode.h (coff_swap_scnhdr_out): ".drectve" doesn't have trailing 0.

This commit is contained in:
David Edelsohn 1996-06-20 19:36:35 +00:00
parent 180b9a3805
commit 9ca108cdd0
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Thu Jun 20 11:00:57 1996 Doug Evans <dje@canuck.cygnus.com>
* peicode.h (coff_swap_scnhdr_out): ".drectve" doesn't have trailing 0.
Wed Jun 19 11:37:52 1996 Ian Lance Taylor <ian@cygnus.com> Wed Jun 19 11:37:52 1996 Ian Lance Taylor <ian@cygnus.com>
* elf.c (map_sections_to_segments): Fix up the test for -Ttext to * elf.c (map_sections_to_segments): Fix up the test for -Ttext to

View file

@ -783,7 +783,7 @@ static void add_data_entry (abfd, aout, idx, name, base)
if (sec != NULL) if (sec != NULL)
{ {
aout->DataDirectory[idx].VirtualAddress = sec->vma - base; aout->DataDirectory[idx].VirtualAddress = sec->vma - base;
aout->DataDirectory[idx].Size = sec->_cooked_size; aout->DataDirectory[idx].Size = pei_section_data (abfd, sec)->virt_size;
sec->flags |= SEC_DATA; sec->flags |= SEC_DATA;
} }
} }
@ -1065,7 +1065,6 @@ coff_swap_scnhdr_out (abfd, in, out)
else if (strcmp (scnhdr_int->s_name, ".rdata") == 0 else if (strcmp (scnhdr_int->s_name, ".rdata") == 0
|| strcmp (scnhdr_int->s_name, ".edata") == 0) || strcmp (scnhdr_int->s_name, ".edata") == 0)
flags = IMAGE_SCN_MEM_READ | SEC_DATA; flags = IMAGE_SCN_MEM_READ | SEC_DATA;
/* ppc-nt additions */
else if (strcmp (scnhdr_int->s_name, ".pdata") == 0) else if (strcmp (scnhdr_int->s_name, ".pdata") == 0)
flags = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_4BYTES | flags = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_4BYTES |
IMAGE_SCN_MEM_READ ; IMAGE_SCN_MEM_READ ;
@ -1077,9 +1076,8 @@ coff_swap_scnhdr_out (abfd, in, out)
else if (strcmp (scnhdr_int->s_name, ".ydata") == 0) else if (strcmp (scnhdr_int->s_name, ".ydata") == 0)
flags = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_8BYTES | flags = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_ALIGN_8BYTES |
IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_WRITE ; IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_WRITE ;
else if (strcmp (scnhdr_int->s_name, ".drectve") == 0) else if (strncmp (scnhdr_int->s_name, ".drectve", strlen(".drectve")) == 0)
flags = IMAGE_SCN_LNK_INFO | IMAGE_SCN_LNK_REMOVE ; flags = IMAGE_SCN_LNK_INFO | IMAGE_SCN_LNK_REMOVE ;
/* end of ppc-nt additions */
#ifdef POWERPC_LE_PE #ifdef POWERPC_LE_PE
else if (strncmp (scnhdr_int->s_name, ".stabstr", strlen(".stabstr")) == 0) else if (strncmp (scnhdr_int->s_name, ".stabstr", strlen(".stabstr")) == 0)
{ {