View Single Post
  #2 (permalink)  
Old 05-21-2008, 05:32 PM
Jean H
Guest
 
Posts: n/a
Default Re: Creating .so file to call from IDL

Sid wrote:
> Hi,
>
> I am trying to create a .so file from a fortran 90 program in order to
> call it from an IDL program. Could someone please tell me the correct
> compiler options to do this?
>
> My apologies if this is very trivial...I program in IDL, so have no
> idea how this is done.
>
> Best,
>
> Sid


Sid,
try adding -c to your call to the compiler
gfortran -c myfile.f90

it will create myfile.o (simply rename it??)

Jean
Reply With Quote