This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

archergdb can't use output command to print Fortran allocatable arrays


Hi, all

   I don't know what email list can be written about the archergdb
brach archer-jankratochvil-vl, so I email to gdb directly.

   When I use archergdb to print Fortran allocatable arrays, I found
that I can't use the output command:

  for example,

  program main
   implicit none

   integer :: aaa=1
   real(8) :: bbb=3.d0
   real(8), allocatable :: ccc(:,:)
   allocate(ccc(4,5))
   ccc=3.4
   write(*,*) "Hello World!"
   deallocate(ccc)
   stop
 end program main

 break after ccc=3.4

 run

 If I type

 1) p ccc
     $3 = (( 3.4000000953674316, 3.4000000953674316,
3.4000000953674316, 3.4000000953674316) ( 3.4000000953674316,
3.4000000953674316, 3.4000000953674316, 3.4000000953674316) (
3.4000000953674316, 3.4000000953674316, 3.4000000953674316,
3.4000000953674316) ( 3.4000000953674316, 3.4000000953674316,
3.4000000953674316, 3.4000000953674316) ( 3.4000000953674316,
3.4000000953674316, 3.4000000953674316, 3.4000000953674316) )

 2) pt ccc
    type = real(kind=8) (4,5)

 3) whatis ccc
    type = real(kind=8) (4,5)

 4) output ccc
    Cannot resolve DW_OP_push_object_address for a missing object

  It's obviours wrong when using the output command.

  Can this issure be fixed?

  Thanks.

-- 
Best Regards,
xunxun


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]