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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1390198

Title:
  openmpi needs to be rebuilt with gfortran 4.9.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hdf5/+bug/1390198/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to