LARGEADDRESSAWARE

  • Thread starter Thread starter Frank Rizzo
  • Start date Start date
F

Frank Rizzo

Ok, it is easy enough to set a binary to be LARGEADDRESSAWARE. But how
can I find out whether the binary has been set to LARGEADDRESSAWARE or not?

Thanks.
 
Frank Rizzo said:
Ok, it is easy enough to set a binary to be LARGEADDRESSAWARE. But how can I find out
whether the binary has been set to LARGEADDRESSAWARE or not?

Thanks.


Use the SDK tools link or dumpbin for this.

link /dump /headers <executable>
or
dumpbin /headers <executable>

should display the PE header with something like ...
....
Application can handle large (>2GB) addresses


Willy.
 
Willy said:
Use the SDK tools link or dumpbin for this.

link /dump /headers <executable>
or
dumpbin /headers <executable>

Willy, you are the man.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top