I just bought the IVF XE2016 Professional with IMSL and set up the library (library and include directory) for IMSL/
However, I could not compile when I try to link the IMSL,
Severity Code Description Project File Line
Severity Code Description Project File Line
Error error code 23 (returned by OpenValidateX) opening pdb Debug\vc140.pdb H:\users\myangadmin\Documents\Visual Studio 2015\Projects\Console3\Console3\Console3.f90 1
Error error #7881: This module file was generated for a different platform or by an incompatible compiler or compiler release. It cannot be read. [NUMERICAL_LIBRARIES] H:\users\myangadmin\Documents\Visual Studio 2015\Projects\Console3\Console3\Console3.f90 2
it seems "use numerical_libraries" is not valid in the new program any more. Am I right?
If so, what is the new syntax? Thanks
see the following program.
program Console3
use numerical_libraries
include 'link_fnl_shared.h'
implicit none
print *, 'Hello World'
end program Console3