Comment 6 for bug 1390198

Revision history for this message
Pierre Navaro (navaro) wrote :

Release: 14.10

$ cat test_hdf5.F90
program write_hdf5_data

use hdf5

implicit none
integer(hid_t) :: file_id, error

!Initialize FORTRAN interface.
CALL h5open_f (error)
!Create a new file using default properties.
call H5Fcreate_f("test.h5", H5F_ACC_TRUNC_F, file_id, error);

!Terminate access to the file.
CALL h5fclose_f(file_id, error)

!Close FORTRAN interface.
CALL h5close_f(error)

end program

$ h5fc test_hdf5.F90
test_hdf5.F90:3.4:

use hdf5
    1
Fatal Error: Cannot read module file 'hdf5.mod' opened at (1), because it was created by a different version of GNU Fortran