How to get doxygen to run faster?

后端 未结 5 1868
抹茶落季
抹茶落季 2020-12-29 06:51

Doxygen is a bit slow - it takes about a couple of minutes to process my whole project, so for small incremental changes this is longer than actually building the rest of my

5条回答
  •  青春惊慌失措
    2020-12-29 07:28

    There is a DOT_NUM_THREADS options which may increase the performance on multicore machines. Unfortunately doxygen itself is just single threaded.

    Another approach would be to organize your code into modules run for each module a separate doxygen instance and link the resulting tags together: http://www.doxygen.nl/manual/external.html

提交回复
热议问题