Matlab Coder Error - Unable to create HTML report file?

3 visualizaciones (últimos 30 días)
Philipp
Philipp el 8 de Mayo de 2013
When using the Matlab Coder for mex file compilation,the following error occurs:
Compilation failed. Unable to create HTML report file 'C:\Users\....filename_buildlog1.html'. Use help codegen for more information on using this command.
It seems like the code generation itself is working, only the HTML report file generation is the actual problem.
I used the default values in coder.config('mex') for the compilation and switched to dynamic allocation, so there should be no problem with unbounded sizes that could cause the problem. Compiling a similar function with same configuration parameters works fine.
Is there any possibility to switch off HTML code generation?
Thanks for any help!

Respuestas (1)

Ryan Livingston
Ryan Livingston el 8 de Mayo de 2013
To shut off the report you can:
c = coder.config('mex');
c.GenerateReport = false;
c.LaunchReport = false;
and then pass that config:
codegen ... -config c
  1 comentario
Philipp
Philipp el 13 de Mayo de 2013
Editada: Philipp el 13 de Mayo de 2013
Thanks for your answer. I already tried that one, without success.
With GenerateReport and LaunchReport you can only switch on or off the code generation report that pops up when code generation is finished or an error occurs. It seems that the problem behind the error message i receive doesn´t refer to these reports, but to HTML files that are automatically generated and stored under .../codegen/mex/function_name/html in the same folder in which the originial m-function is located. I need a possibility that stops these html files from being generated or, even better, a solution for the actual error that causes that problem.

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB Coder en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by