Hey guys. I'm trying to compile this program using g95 compiler (Windows Vista), but I can't link the IMSL library to the program.
Here's the begining of the code:
And this is what I've got:
I have no ideia how to build a module. I have the IMSL library (I mean, those files *.mod, *.lib, etc), but I don't know how to use it.
Thank you.
Here's the begining of the code:
Code:
USE imsl
!INCLUDE 'link_f90_static.h'
parameter (npmax=8)
implicit real*8 (a-h,o-z)
And this is what I've got:
Code:
USE imsl
1
Fatal Error: Can't open module file 'imsl.mod' at (1) for reading: No such file
or directory
I have no ideia how to build a module. I have the IMSL library (I mean, those files *.mod, *.lib, etc), but I don't know how to use it.
Thank you.