Hi friends.
I am developing a project in Fortran using Intel XE Parallel Studio 2015 Update 6 and Visual Studio 2015
I have been developing, compiling, building solution, running my application, doing anything, without any type of error.
But suddenly it is not working, and I can not run my code.
I think I did not change anything but I guess that I changed something indeed because I am receiving this message:
Unable to start program c:\project\x64\debug\wopr.exe
C:\project\x64\debug\wopr.exe is not a valid Win32 application.
Thank you.
I'm going to guess that your program is bumping up against the 2GB limit for static code and data. Sometimes you'll get a linker error about this, but not always. See https://software.intel.com/en-us/articles/memory-limits-applications-windows for more details.
I'm going to guess that your program is bumping up against the 2GB limit for static code and data. Sometimes you'll get a linker error about this, but not always. See https://software.intel.com/en-us/articles/memory-limits-applications-windows for more details.
Dear Dr. Fortran
Absolutely right. As you point, my data definition overflowed the 2GB limit.
I appreciate your time and effort. Thanks.
For more complete information about compiler optimizations, see our Optimization Notice.