Hi,
I have a big Fortran program in which all variables are static and divided in several common files. The size of these variables/arrays are defined as parameters and I would like to increase one of these parameters.
However, I am having problems to generate the executable because the image size hit the maximum allowable size:
LINK : fatal error LNK1248: image size (A52E4000) exceeds maximum allowable size (80000000)
What is the easiest way to identify which are the most memory consuming variables?
Thanks in advance.