Recent content by leroygr

  1. L

    Fortran Compilation problem with gfortran

    Ok! Can you explain to me how to do that? (I'm quite a newbie sorry ...)
  2. L

    Fortran Compilation problem with gfortran

    I replaced if (iargc /= 1) then write(0,*) ' ' write(0,*) 'Usage: rd_wr_binary.exe <filename>' write(0,*) ' ' ! stop end if by if (iargc() /= 1) then write(0,*) ' ' write(0,*) 'Usage: rd_wr_binary.exe <filename>' write(0,*) ' ' ...
  3. L

    Fortran Compilation problem with gfortran

    I don't know exactly why... To be honest I'm not the author of the program. I try to use it for SRTM data to WRF geogrid binary data conversion. I understand what the program does generally, but unfortunately not all the code lines. I'll try to add rcgldr's code.
  4. L

    Fortran Compilation problem with gfortran

    Yes indeed. I did the modification you proposed but I got the same error...
  5. L

    Fortran Compilation problem with gfortran

    Hello everyone, I'm trying since a few days to compile a f90 program with gfortran (on Ubuntu) with a makefile. The fortran program calls 2 routines written in C. Here is my makefile: FC = gfortran SFC = gfortran FFLAGS = -ffree-form...
Back
Top