home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / tips.m4 < prev    next >
Text File  |  1998-12-06  |  10KB  |  292 lines

  1. ! Generated automatically from TIPS by tips2m4 -- DO NOT EDIT
  2. include(ifdef(`macros',macros(),ifdef(`srcdir',srcdir()/macros.m4,macros.m4)))
  3. ! Initial tip (number 0) - shown after wrap-around.
  4.  
  5. Ddd*tip0: \
  6. @rm If you have any more DDD tips of the day,\n\
  7. please send them to the DDD developers EMAIL([ddd]@ ips.cs.tu-bs.de).
  8.  
  9.  
  10. ! First tips.
  11.  
  12. Ddd*tip1: \
  13. @rm Welcome to DDD!\n\
  14. You can get help on all items by pointing at them and pressing F1.\n\
  15. And don't worry, you can undo most mistakes...
  16.  
  17. Ddd*tip2: \
  18. @rm Whenever you're stuck, try LBL(Help, What Now).  This will analyze the\n\
  19. current DDD state and give you some hints on what to do next.
  20.  
  21. Ddd*tip3: \
  22. @rm Buttons with a small triangle in the upper right corner are special:\n\
  23. pressing and holding BUTTON(1) on them will pop up a menu \n\
  24. with additional options.
  25.  
  26. Ddd*tip4: \
  27. @rm You can interrupt @GDB@ and the current program by clicking on\n\
  28. LBL(Program, Interrupt) or pressing KEY(Esc).
  29.  
  30. Ddd*tip5: \
  31. @rm If you made a mistake, try LBL(Edit, Undo).  This will undo the most\n\
  32. recent debugger command and redisplay the previous program state.
  33.  
  34. Ddd*tip6: \
  35. @rm There are three ways to show the value of a variable:\n\
  36. ITEM You can view its value, simply by pointing at it;\n\
  37. ITEM You can print its value in the debugger console, using LBL(Print ());\n\
  38. ITEM You can display it graphically, using LBL(Display ()).
  39.  
  40. Ddd*tip7: \
  41. @rm A quick way to manipulate variables, breakpoints, and displays\n\
  42. is to press BUTTON(3) on them.
  43.  
  44. Ddd*tip8: \
  45. @rm Double-clicking on any value in the data display \n\
  46. will toggle more details.
  47.  
  48. Ddd*tip9: \
  49. @rm If your program needs special terminal capabilities such as readline\n\
  50. or curses, let it run in the separate execution window \n\
  51. (LBL(Program, Run in Execution Window)).
  52.  
  53.  
  54. ! Intermediate tips.
  55.  
  56. Ddd*tip10: \
  57. @rm If you want to customize the DDD fonts, see\n\
  58. LBL(Edit, Preferences, Fonts).
  59.  
  60. Ddd*tip11: \
  61. @rm To change the text background color, write into FILE(~/.[ddd]/init):\n\
  62. CODE([Ddd]*XmText.background:      ) VAR(color)\n\
  63. CODE([Ddd]*XmTextField.background: ) VAR(color)\n\
  64. CODE([Ddd]*XmList.background:      ) VAR(color)
  65.  
  66. Ddd*tip12: \
  67. @rm When using GDB, all text fields have command and argument completion\n\
  68. with KEY(Tab), just like the shell.  In a file selection box, type part of\n\
  69. a filename, hit KEY(Tab), and voila!  It's completed.
  70.  
  71. Ddd*tip13: \
  72. @rm You can always recenter the command tool\n\
  73. by selecting LBL(View, Command Tool),\n\
  74. or by pressing KEY(Alt+8).
  75.  
  76. Ddd*tip14: \
  77. @rm To scroll the data display, most users find a EMPH(panner)\n\
  78. much more convenient than two scrollbars.\n\
  79. Check out LBL(Edit, Preferences, Startup, Data Scrolling).
  80.  
  81. Ddd*tip15: \
  82. @rm To limit the number of array elements in a data display, set\n\
  83. LBL(Edit, GDB Settings, Limit on array elements to print).
  84.  
  85. Ddd*tip16: \
  86. @rm If DDD cannot find a source, set the @GDB@ source path via \n\
  87. LBL(Edit, @GDB@ Settings) or enter \n\
  88. SAMP(dir sourcedir_1:sourcedir_2:...:sourcedir_n) at the GDB prompt.
  89.  
  90. Ddd*tip17: \
  91. @rm To save the window size, use LBL(Edit, Save Options).
  92.  
  93. Ddd*tip18: \
  94. @rm You can quickly set breakpoints\n\
  95. by double-clicking in the breakpoint area.
  96.  
  97. Ddd*tip19: \
  98. @rm To see the EMPH(actual) type of a C++ object in GDB, set\n\
  99. LBL(Edit, GDB Settings, Set printing of object's derived type).
  100.  
  101. Ddd*tip20: \
  102. @rm To display VAR(data) in hexadecimal format, display it and choose\n\
  103. LBL(Convert to Hex) from the LBL(Display ()) menu, \n\
  104. or enter KBD(graph display /x VAR(data)) at the GDB prompt.
  105.  
  106. Ddd*tip21: \
  107. @rm To send a signal to your program,\n\
  108. use LBL(Status, Signals, Send).
  109.  
  110. Ddd*tip22: \
  111. @rm To quickly display variable values,\n\
  112. double-click on the variable name.
  113.  
  114. Ddd*tip23: \
  115. @rm After looking up an item or stepping through the program, you can use\n\
  116. LBL(Edit, Undo) and LBL(Edit, Redo) to return to earlier locations.
  117.  
  118. Ddd*tip24: \
  119. @rm You can repeat the last command by hitting KEY_RETURN.\n\
  120. Use KEY(Ctrl+B) and KEY(Ctrl+F) to search the command history.
  121.  
  122. Ddd*tip25: \
  123. @rm You can move breakpoints by dragging them.  \n\
  124. Just press and hold BUTTON(1) on a breakpoint,\n\
  125. move it to the new position and release BUTTON(1) again.
  126.  
  127. Ddd*tip26: \
  128. @rm To make your program ignore signals, use LBL(Status, Signals) and\n\
  129. unset the LBL(Pass) button for the appropriate signal.
  130.  
  131. Ddd*tip27: \
  132. @rm You can save space by disabling toolbar captions.\n\
  133. See LBL(Edit, Preferences, Startup, Toolbar Appearance).
  134.  
  135. Ddd*tip28: \
  136. @rm To quickly edit breakpoint properties, \n\
  137. double-click on a breakpoint symbol.
  138.  
  139. Ddd*tip29: \
  140. @rm To have GDB start your program automatically upon startup,\n\
  141. put the following lines in your FILE(.gdbinit) file:\n\
  142. CODE(break main)      - or some other initial function\n\
  143. CODE(run       )      - possibly giving arguments here
  144.  
  145.  
  146. ! Advanced tips.
  147.  
  148. Ddd*tip30: \
  149. @rm To get rid of these tips of the day, unset\n\
  150. LBL(Edit, Preferences, Startup, Show Tip of the Day).
  151.  
  152. Ddd*tip31: \
  153. @rm To redirect stderr from the execution window to the debugger console,\n\
  154. add SAMP(2>/dev/tty) to the arguments of your program.
  155.  
  156. Ddd*tip32: \
  157. @rm To display the first VAR(n) elements of a variable-length array VAR(ptr),\n\
  158. enter KBD(graph display VAR(ptr)\1330\135@ VAR(n)) at the GDB prompt.
  159.  
  160. Ddd*tip33: \
  161. @rm You can have each of DDD, @GDB@ and the debugged program run on\n\
  162. different machines.  See the DDD KBD(--rhost) option for details.
  163.  
  164. Ddd*tip34: \
  165. @rm You can copy breakpoints by dragging them while pressing KEY(Shift).\n\
  166. Just press and hold KEY(Shift)+BUTTON(1) on a breakpoint,\n\
  167. move it to the new position and release BUTTON(1) again.
  168.  
  169. Ddd*tip35: \
  170. @rm To save and restore data displays, cut, copy and paste them via\n\
  171. the LBL(Edit) menu.  Together with CODE(xclipboard), you can manage\n\
  172. arbitrary collections of data displays.
  173.  
  174. Ddd*tip36: \
  175. @rm Do you want to stop this debugging session and resume later?\n\
  176. Use LBL(File, Save Session)!
  177.  
  178. Ddd*tip37: \
  179. @rm To debug a child process, put a call to SAMP(sleep) in the child right\n\
  180. after the SAMP(fork) call.  Run the program and attach to the child process\n\
  181. using LBL(File, Attach to Process).
  182.  
  183. Ddd*tip38: \
  184. @rm If your program prints a lot of text on standard error, try\n\
  185. redirecting standard error to a file (via SAMP(2> VAR(FILE))), or add\n\
  186. to FILE(~/.[ddd]/init): CODE([Ddd]*lineBufferedConsole: off).
  187.  
  188. Ddd*tip39: \
  189. @rm If the inferior debugger does not support stderr redirection, try\n\
  190. invoking DDD using KBD(--debugger 'VAR(NAME) 2> VAR(FILE)').
  191.  
  192. Ddd*tip40: \
  193. @rm Using GDB, you can define your own canned sequences of commands.\n\
  194. Try LBL(Commands, Define Command).
  195.  
  196. Ddd*tip41: \
  197. @rm To use GDB with Solaris CC, compile with SAMP(-xs).\n\
  198. GDB wants debugging info in the executable.
  199.  
  200. Ddd*tip42: \
  201. @rm To use GDB with G77, compile with SAMP(-fdebug-kludge).  This gives\n\
  202. rudimentary information on COMMON and EQUIVALENCE variables in GDB.\n\
  203. See the G77 documentation for details.
  204.  
  205. Ddd*tip43: \
  206. @rm Double-clicking on a function call will lead you to the definition of\n\
  207. the function.  Use LBL(Edit, Undo) to return to the function call.
  208.  
  209. Ddd*tip44: \
  210. @rm Disabled breakpoints can be used as bookmarks.\n\
  211. Use LBL(Source, Edit Breakpoints) to list all breakpoints;\n\
  212. then, click on LBL(Lookup) to jump to a breakpoint location.
  213.  
  214. Ddd*tip45: \
  215. @rm You can assign user-defined buttons to frequently used commands.\n\
  216. Try LBL(Commands, Edit Buttons).
  217.  
  218. Ddd*tip46: \
  219. @rm In the Breakpoint and Display Editors,\n\
  220. you can toggle the selection with KEY(Ctrl)+BUTTON(1).\n\
  221. This allows you to select non-contiguous ranges of items.
  222.  
  223. Ddd*tip47: \
  224. @rm To change the properties of multiple breakpoints at once,\n\
  225. select them in the breakpoint editor (LBL(Source, Edit Breakpoints))\n\
  226. and click on LBL(Properties).
  227.  
  228. Ddd*tip48: \
  229. @rm Even while in the source window, \n\
  230. you can enter and edit GDB commands:\n\
  231. Just type the command and press KEY_RETURN.
  232.  
  233. Ddd*tip49: \
  234. @rm You can record commands to be executed when a breakpoint is hit.\n\
  235. In the LBL(Breakpoint Properties) panel, try LBL(Record) and LBL(End).
  236.  
  237. Ddd*tip50: \
  238. @rm You can easily resume a saved DDD VAR(session)\n\
  239. by invoking DDD as KBD([ddd] =VAR(session)).
  240.  
  241. Ddd*tip51: \
  242. @rm If the DDD source window keeps on scrolling until the end of source is\n\
  243. reached, try changing the SAMP(glyphUpdateDelay) resource.  See the\n\
  244. DDD manual for details.
  245.  
  246. Ddd*tip52: \
  247. @rm For further DDD customization (e.g. colors), see the FILE([Ddd])\n\
  248. app-defaults file from the DDD WWW Site or the DDD source\n\
  249. distribution.  Copy resources to FILE(~/.[ddd]/init) and edit as desired.
  250.  
  251.  
  252. ! Professional tips.
  253.  
  254. Ddd*tip53: \
  255. @rm In GCC, SAMP(-Wall) does not enable all warnings.  See the GCC\n\
  256. documentation for other warnings you might consider useful.\n\
  257. BY(J.H.M. Dassen, jdassen@ wi.leidenuniv.nl)
  258.  
  259. Ddd*tip54: \
  260. @rm To get a global idea of what a process or program does or is doing,\n\
  261. use a system call tracer, like SAMP(strace), SAMP(truss), or SAMP(trace).\n\
  262. BY(J.H.M. Dassen, jdassen@ wi.leidenuniv.nl)
  263.  
  264. Ddd*tip55: \
  265. @rm If you suspect memory corruption caused by problematic pointers, \n\
  266. try linking with Electric Fence SAMP(efence) or the SAMP(dbmalloc) library.\n\
  267. See the DDD WWW page for links.\n\
  268. BY(J.H.M. Dassen, jdassen@ wi.leidenuniv.nl)
  269.  
  270. Ddd*tip56: \
  271. @rm Prevention is better than cure.  Document your assumptions using\n\
  272. CODE(<assert.h>) or GNU NANA.  See the DDD WWW page for links.\n\
  273. BY(J.H.M. Dassen, jdassen@ wi.leidenuniv.nl)
  274.  
  275. Ddd*tip57: \
  276. @rm The debugger isn't a substitute for good thinking.  But, in some\n\
  277. cases, thinking isn't a substitute for a good debugger either.  The\n\
  278. most effective combination is good thinking and a good debugger.\n\
  279. QUOTE(Steve McConnell, Code Complete)
  280.  
  281. Ddd*tip58: \
  282. @rm When you're totally stuck, try to find a helpful ear.  In my experience,\n\
  283. nothing helps you more in debugging than to try to explain your problem\n\
  284. (what your code should do, and what it actually does) to someone else.\n\
  285. BY(J.H.M. Dassen, jdassen@ wi.leidenuniv.nl)
  286.  
  287. ! If you have other questions, comments or suggestions, contact The King via
  288. ! electronic mail to EMAIL(elvis@ graceland.gnu.ai.mit.edu).  The King will
  289. ! try to help you out, although he may not have time to fix your problems.
  290. ! QUOTE(Free Software Foundation, GNU Hello Manual)
  291.  
  292.