diff --git a/docs.it4i/software/intel/intel-suite/intel-debugger.md b/docs.it4i/software/intel/intel-suite/intel-debugger.md index a0784a9141e23caa6823a8f69a3449043e729ebf..414e410a0b548f0381cc83c9da3d17d0a772049a 100644 --- a/docs.it4i/software/intel/intel-suite/intel-debugger.md +++ b/docs.it4i/software/intel/intel-suite/intel-debugger.md @@ -5,7 +5,7 @@ ## Debugging Serial Applications -The Intel debugger version is available via the intel/13.5.192 module. The debugger works for applications compiled with the C and C++ compiler and the ifort Fortran 77/90/95 compiler. The debugger provides a Java GUI environment. Use [X display][1] to run the GUI. +The Intel debugger version is available via the `intel/13.5.192` module. The debugger works for applications compiled with the C and C++ compiler and the ifort Fortran 77/90/95 compiler. The debugger provides a Java GUI environment. Use [X display][1] to run the GUI. ```console $ ml intel/13.5.192 @@ -19,7 +19,7 @@ The debugger may run in text mode. To debug in the text mode, use: $ idbc ``` -To debug on the compute nodes, the intel module must be loaded. The GUI on compute nodes may be accessed using the same way as in the [GUI section][1]. +To debug on the compute nodes, the `intel` module must be loaded. The GUI on compute nodes may be accessed using the same way as in the [GUI section][1]. Example: @@ -33,7 +33,7 @@ $ icc -O0 -g myprog.c -o myprog.x $ idb ./myprog.x ``` -In this example, we allocate 1 full compute node, compile the myprog.c program with the -O0 -g debugging options and run the IDB debugger interactively on the myprog.x executable. The GUI access is via the X11 port forwarding provided by the PBS workload manager. +In this example, we allocate 1 full compute node, compile the myprog.c program with the `-O0 -g` debugging options and run the IDB debugger interactively on the myprog.x executable. The GUI access is via the X11 port forwarding provided by the PBS workload manager. ## Debugging Parallel Applications