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

Help: library

mingan
Beginner
601 Views
I installed both Compaq & Intel Visual Fortrans on my old computer. But I got the following problem.

There is no such problem for my new computer.

What is the problem?


I've already included such sentences in my program

INCLUDE 'link_f90_static.h'
use Numerical_Libraries

Thanks



Intel_binary_DPM_simu1.f90
D:My DocumentsVisual Studio 2005ProjectsConsole1Console1Intel_binary_DPM_simu1.f90(18) : Error: This module file was generated for a different platform or by an incompatible compiler or compiler release. It cannot be read. [NUMERICAL_LIBRARIES]
D:My DocumentsVisual Studio 2005ProjectsConsole1Console1Intel_binary_DPM_simu1.f90(227) : Error: This name does not have a type, and must have an explicit type. [ANORDF]
D:My DocumentsVisual Studio 2005ProjectsConsole1Console1Intel_binary_DPM_simu1.f90(237) : Error: This name does not have a type, and must have an explicit type. [ANORIN]
D:My DocumentsVisual Studio 2005ProjectsConsole1Console1Intel_binary_DPM_simu1.f90(698) : Error: This module file was generated for a different platform or by an incompatible compiler or compiler release. It cannot be read. [NUMERICAL_LIBRARIES]
compilation aborted for D:My DocumentsVisual Studio 2005ProjectsConsole1Console1Intel_binary_DPM_simu1.f90 (code 1)

0 Kudos
2 Replies
Steven_L_Intel1
Employee
601 Views

Your system PATH, INCLUDE and LIB environment variables have paths for CVF and possibly Intel Fortran, and you did not add the path to the IMSL "CTT6.0" INCLUDE folder to Tools..Options..Intel Fortran..Include files.

I recommend:

1. Edit the system evironment files and remove the CVF folders from INCLUDE and LIB (it's probably ok to leave them in PATH).

2. Read the section on using IMSL under Building Applications..Using Libraries..Using IMSL in the Intel documentation for how to configure Visual Studio to use IMSL.

0 Kudos
mingan
Beginner
601 Views
Steve,

I did include these two paths:
  1. C:Program FilesVNICTT6.0libIA32.

  2. C:Program FilesVNICTT6.0includeIA32.

I checked it again, as you said, after I remove the paths to CVF, it works.

Thanks a lot
0 Kudos
Reply