Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Gaute Hope edited this page Nov 15, 2017 · 11 revisions

Debugging using gdb

Compile without the release option to enable debugging:

$ cmake -H. -Bbuild -GNinja # (not using release option)
$ ninja -C build

Then run astroid using gdb (here without starting the automatic polling):

$ gdb --args build/astroid --no-auto-poll

after a crash, type e.g. bt at the gdb prompt to get a backtrace.

Profiling using gprof

Compile with the profiling option:

$ cmake -DENABLE_PROFILING=ON

To profile, run astroid:

$ astroid --no-auto-poll # no automatic polling

this creates the file gmon.out in the current directory. Use gprof to parse the output, and gprof2dot and dot (part of graphviz) to graph the output:

$ gprof astroid | gprof2dot -s | dot -Tpng -o prof.png

Clone this wiki locally

Morty Proxy This is a proxified and sanitized view of the page, visit original site.