[Bug binutils/716] strip doesn't maintain /LARGEADDRESSAWARE flag (mingw build, Windows 2000)

2005-02-14 Thread nickc at redhat dot com
--- Additional Comments From nickc at redhat dot com 2005-02-14 11:20 --- Subject: Re: strip doesn't maintain /LARGEADDRESSAWARE flag (mingw build, Windows 2000) Hi Jan, > Even more KISS-like: > > if (pe_data (obfd) != NULL && pe_data (ibfd) != NULL > && (pe_data (obfd

Re: [Bug binutils/716] strip doesn't maintain /LARGEADDRESSAWARE flag (mingw build, Windows 2000)

2005-02-14 Thread Nick Clifton
Hi Jan, Even more KISS-like: if (pe_data (obfd) != NULL && pe_data (ibfd) != NULL && (pe_data (obfd)->real_flags & 0x20)) pe_data (obfd)->real_flags |= 0x20; Except of course that you want to check for the presence of the flag in the *input* bfd and then copy it to the output bfd

[Bug binutils/716] strip doesn't maintain /LARGEADDRESSAWARE flag (mingw build, Windows 2000)

2005-02-14 Thread nickc at redhat dot com
--- Additional Comments From nickc at redhat dot com 2005-02-14 11:21 --- Patch checked in -- What|Removed |Added Status|WAITING |RESOLVED

[Bug binutils/716] strip doesn't maintain /LARGEADDRESSAWARE flag (mingw build, Windows 2000)

2005-02-14 Thread Jan dot Nijtmans at xs4all dot nl
--- Additional Comments From Jan dot Nijtmans at xs4all dot nl 2005-02-14 13:11 --- Subject: Re: strip doesn't maintain /LARGEADDRESSAWARE flag (mingw build, Windows 2000) nickc at redhat dot com wrote: > So I have checked in this version of the patch: Yes, that's what I meant.