GDB is the standard debugger for the GNU software system.
1
vote
1answer
88 views
+50
Can GDB be used to print values of allocatable arrays of a derived type in Fortran 90?
I have the following data structure in a Fortran90 program:
TYPE derivedType
CHARACTER(100) :: name = ' '
INTEGER :: type = 0
REAL(KIND(1.0D0)) :: property = 0.0
END ...