Changes between Version 6 and Version 7 of Documentation/UserGuide/IDB


Ignore:
Timestamp:
2015-10-15T14:29:36+02:00 (9 years ago)
Author:
ajornet
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/IDB

    v6 v7  
    185185   * [attachment:gdb-quickref.pdf Quick reference sheet]. Also available on the net http://www.scribd.com/doc/3589/gdb-quickref 
    186186 
    187 == Alternative debuggers == 
    188 === Open source debugger === 
     187 
     188 
     189= Totalview = 
     190 
     191Totalview is GUI debugger that works very will with mpi/omp binaries. You can find it installed in big HPCs such as Curie or ADA. 
     192 
     193* Curie 
     194 
     195In order to run totalview you need to make available to you like this: 
     196{{{ 
     197module load totalview 
     198}}} 
     199In order to run you simulation in interactive mode so you can use the debugger interface: 
     200{{{ 
     201ccc_mprun -n 16 -p standard -d tv ./orchidee_ol  
     202}}} 
     203This call ask for 16 processos in the standard queue. -d tv selects totalview as a debugger. 
     204 
     205= Alternative debuggers = 
     206 
     207== Open source debugger == 
    189208GNU debugger, a free and open source alternative to idb : 
    190209   * gdb 
     
    195214 
    196215 
    197 === Other Graphical User Interfaces === 
     216== Other Graphical User Interfaces == 
    198217 
    199218Beware, unfortunately these tools are a bit "buggy" themselves, so the execution might crash more often with them than when launching the executable through the command line debugger presented above. 
     
    201220 
    202221 
    203 === Syntax === 
     222== Syntax == 
    204223 
    205224By default, idb actually use the very same syntax as gdb but may also be used with an other syntax, when launched with the -dbx option.  
     
    219238 
    220239 
    221 == Other documents  == 
     240= Other documents  = 
    222241 
    223242   * [[http://orchidee-orme.extra.cea.fr/fortran_french/fortran_debug_IDRIS.pdf |A presentation of the debug tools available at IDRIS (should also be of some use for those using mercure)]]