Is there an easy way to integrate a profiling tool with Code :: Blocks?

I like working with Code :: Blocks (C ++ IDE), and I was wondering ... do you have a tool you can use to profile your code that integrates with Code :: Blocks?

Now I'm thinking about the Windows tool, but the Linux tool will be good too.

Perhaps something like valgrind , but for Windows.

+4
source share
1 answer

You can check the Code :: Blocks Plugins page , section "contrib". There are plugins for integrating Valgrind, GProf, etc. On Ubuntu you need to install plugins-contrib code modules in order to use this. On Windows, I think you need to select the plugins that you intend to use during installation, at least this is what I do, but I'm sure there is another option.

+3
source

Source: https://habr.com/ru/post/1305179/


All Articles