debugging - How to use break command in idb(intel compiler debugger) for fortran executable file? -


I am new to idb / gdb debugger, so I apologize for the bad questions in advance. I am trying to set a breakpoint in a function called set_time_i which is using idb in the file named time_manager.f90. However, idb gives me an error message and prevents me from setting the HTE breakpoint. Do I know I have done something wrong? I tried all these commands:

1) (idb) break time_manager.F90: set_time_i

2) (idb) break time_manager: set_time_i

3 (Idb) break_set_time_i

4) (idb) break time_manager_: set_time_i _

is an error message

"break time_manager: set_time_i ^ Unable to parse the form or the FORTRAN expression. "

There is no work above. Do I remember something when I use it? Thanks

command,

  break File: function   

does not work for FORTRAN (be it GDB or IDB). I usually start the third version of Intel Debugger and my congratulations functions in GDB mode.

  [shell] $ idbc -gdb a.out # command-line, breaking gdb mode (idb) set_time_i    

Comments

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -