Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doxygen error: failed to run html help compiler on index.hhp

Tags:

doxygen

So I am having this problem where I get an error when trying to get a .chm file for doxygen.

sh: C:\Program Files\HTML Help Workshop\hhc.exe: no se encontró la orden (command not found)
error: failed to run html help compiler on index.hhp

In my doxyfile I have the following set this way.

GENERATE_HTMLHELP      = YES
CHM_FILE               = index.chm
HHC_LOCATION           = "C:\Program Files (x86)\HTML Help Workshop\hhc.exe"

It's seriously driving me nuts and I don't find anything anywhere. Please help.

like image 539
Cruelo Avatar asked Nov 11 '15 19:11

Cruelo


1 Answers

This still is an issue with doxygen. I would think that the problem is that hhc returns 1 on a success, which is probably treated as an error result by doxygen. If the kind folks at doxygen could fix this, it would keep our logs cleaner :)

like image 107
Wathiant Avatar answered Oct 02 '22 00:10

Wathiant