Lines Matching +full:check +full:- +full:clang +full:- +full:python

10 …Compile the program to be debugged with '-g' and '-fopenmp' options as shown for a sample C source…
11 $ clang -g -fopenmp xyz.c -o xyz.out
14 …e debugged needs to have a dynamic link dependency on 'libomp.so' for OpenMP-specific debugging to…
15 The user can check this using ldd on the generated binary i.e. xyz.out
19 …$ gdb -x <build_dir/libompd/gdb-plugin/python-module/ompd/__init__.py> or <installed_dir/share/gdb…
21 - The gdb command 'help ompd' lists the subcommands available for OpenMP-specific debugging.
22- The command 'ompd init' needs to be run first to load the libompd.so available in the $LD_LIBRAR…
23- The 'ompd init' command starts the program run, and the program stops at a temporary breakpoint …
24 - The user can 'continue' from the temporary breakpoint for further debugging.
25- The user may place breakpoints at the OpenMP internal locations 'ompd_bp_thread_begin' and 'ompd…
26- Similarly, 'ompd_bp_task_begin' and 'ompd_bp_task_end' breakpoints may be used to catch the Open…
29- ompd init -- Finds and initializes the OMPD library; looks for the OMPD library libompd.so u…
30 - ompd icvs -- Displays the values of OpenMP Internal Control Variables.
31 - ompd parallel -- Displays the details of the current and enclosing parallel regions.
32 - ompd threads -- Provides information on threads of the current context.
33- ompd bt [off | on | on continued] -- Sets the filtering mode for "bt" output on or off, or…
34- ompd step -- Executes "step" command into user application frames, skipping OpenMP runtime f…
39 …ires an environment with Python version 3.5 or above. The gdb that is used with the OMPD plugin al…