I've an application, which is compiled in 32-bit because we have some customers still in 32-bit.
We are aware that there is a limitation of 2GB of RAM that we can use.
I've recently been told that we can flag the exe application to increase this space to 3GB, this can be done with the following command on our executable:
Editbin /LARGEADDRESSAWARE (LAA)
I also found some information on the /3GB
that has to be set in the boot.ini file.
My questions are:
- Is this
/3GB
required on 64bits OS? - What can happens if we are on a 32-bit OS, without the
/3GB
switch, with an application with the LAA enabled? We can only use the 2GB? We will have an application crash? - Does this has any impact when being on a 64-bit OS?