I try to connect the IMSL library (version 6.0) to Intel Fortran (version 11.1) in Visual Studio (version 2008). The IMSL library is added to the path like this:
$C:\Program Files (x86)\VNI\imsl\fnl600\Intel64\lib
and the "includes" are there as well
$C:\Program Files (x86)\VNI\imsl\fnl600\Intel64\include\dll
$C:\Program Files (x86)\VNI\imsl\fnl600\Intel64\include\static
The program I run to test the installation is:
PROGRAM main
USE RNUN_INT
USE RNSET_INT
IMPLICIT NONE
INTEGER :: ISEED
REAL :: R(5)
ISEED = 123457
CALL RNSET (ISEED)
CALL RNUN (R)
END PROGRAM main
The result I get is Error #7002: Error in opening the compiled module file. Check INCLUDE paths. [RNUN_INT]
What am I missing?