Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29261 Discussions

Intel Fortran 10.1.011 (IA-32) compiler

luke2006
Beginner
476 Views
my question is concerning the Intel Fortran 10.1.011 (IA-32) compiler.
Currently we (a research team at the Technical University Berlin) have problem we the compiler. Using this compiler embedded in Microsoft Visual Studio it is not possible to debug this program. The following error massage appears always:
Error: Error in opening the compiled module file. Check INCLUDE paths. [KINDEF]
Error: Error in opening the compiled module file. Check INCLUDE paths. [MATERIAL]
Error: Error in opening the compiled module file. Check INCLUDE paths. [ERO_USER_1],
and so on.
So what to do now?!
Thank you for answering!
0 Kudos
1 Reply
Steven_L_Intel1
Employee
476 Views

These errors indicate that there are three module files referenced in USE statements that are not available in the places the compiler looks for modules. If these modules are part of your sources, they are not being compiled. If they come from something else, you need to loicate them and place them where they will be found. The best way to do that is to add the location of the .mod files (folder containing them) to the "Additional INCLUDE directories" Fortran property of your project.
0 Kudos
Reply