Hi
I have just upgraded to parallel studio 2015 from the latest version of 2013 and my main Fortran code no longer compiles. The compilation fails for just one of many files with the error message:
fortcom: Fatal: There has been an internal compiler error (C0000005).
ifort: error #10298: problem during post processing of parallel object compilation
I first tried experimenting with different compiler settings to find a work-around for the problem and I found that disabling openmp resolves the issue. My code relies heavily on openmp, however, so I tried digging further. I started out by removing all openmp directives from the file, but that had no effect. I then tried to iteratively uncomment more and more of the source file until I could get it to compile. The difference between compilation and error in the first instance turned out to be uncommenting a simple go to statement. I then thought I was home free and tried rolling back to the original source file uncommenting only the problematic "go to" statement - but that wouldn't compile either. I then proceeded with trimming the source file once again and now the code started to compile by uncommenting a line with a simple function call. I followed this iterative approach for a while, but I could not identify any set lines of code as the root of the problem.
I then turned to the command line and ran the exact compile line used within the IDE (copied from the html build log) and it it worked! Any suggestions as to what is causing this?