+2010-03-18  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR binutils/11396
+       * libcoff-in.h (pe_tdata): Add dont_strip_reloc.
+       * libcoff.h: Regenerated.
+
+       * peXXigen.c (_bfd_XXi_only_swap_filehdr_out): Clear F_RELFLG
+       if dont_strip_reloc is set.
+       (_bfd_XX_bfd_copy_private_bfd_data_common): Set
+       dont_strip_reloc on output if there is no .reloc and
+       IMAGE_FILE_RELOCS_STRIPPED isn't set in input.
+
 2010-03-18  Wei Guozhi  <carrot@google.com>
 
        PR gas/11323
 
   struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
   struct external_PEI_filehdr *filehdr_out = (struct external_PEI_filehdr *) out;
 
-  if (pe_data (abfd)->has_reloc_section)
+  if (pe_data (abfd)->has_reloc_section
+      || pe_data (abfd)->dont_strip_reloc)
     filehdr_in->f_flags &= ~F_RELFLG;
 
   if (pe_data (abfd)->dll)
       pe_data (obfd)->pe_opthdr.DataDirectory[PE_BASE_RELOCATION_TABLE].VirtualAddress = 0;
       pe_data (obfd)->pe_opthdr.DataDirectory[PE_BASE_RELOCATION_TABLE].Size = 0;
     }
+
+  /* For PIE, if there is .reloc, we won't add IMAGE_FILE_RELOCS_STRIPPED.
+     But there is no .reloc, we make sure that IMAGE_FILE_RELOCS_STRIPPED
+     won't be added.  */
+  if (! pe_data (ibfd)->has_reloc_section
+      && ! (pe_data (ibfd)->real_flags & IMAGE_FILE_RELOCS_STRIPPED))
+    pe_data (obfd)->dont_strip_reloc = 1;
+
   return TRUE;
 }