From 5c9c6a54a4754329a339124b2d26a45a18f9776d Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 14 Feb 2005 11:20:37 +0000 Subject: PR binutils/716 * peicode.h (pe_bfd_copy_private_bfd_data): Copy the large address aware flag from the input bfd to the output bfd. --- bfd/peicode.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'bfd') diff --git a/bfd/peicode.h b/bfd/peicode.h index f72d3f5..8f41793 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -384,6 +384,14 @@ static bfd_boolean pe_bfd_copy_private_bfd_data (ibfd, obfd) bfd *ibfd, *obfd; { + /* PR binutils/716: Copy the large address aware flag. + XXX: Should we be copying other flags or other fields in the pe_data() + structure ? */ + if (pe_data (obfd) != NULL + && pe_data (ibfd) != NULL + && pe_data (ibfd)->real_flags & IMAGE_FILE_LARGE_ADDRESS_AWARE) + pe_data (obfd)->real_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE; + if (!_bfd_XX_bfd_copy_private_bfd_data_common (ibfd, obfd)) return FALSE; -- cgit v1.1