| The --no_wrap_diagnostics option does not appear to be valid. Not sure if this option is only available in certain versions of IAR EWB (and not in the version for Renesas RX). If I try to use it I get the error message: ERROR, Unknown command: "--no_wrap_diagnostics" is not a valid command For the compiler, the following command is OK and gives messages which the IAR Compiler (C/C++) tool can use.: iarbuild %project_file% -make Release -log all These give errors: iarbuild %project_file% -make Release -log all --no_wrap_diagnostics iarbuild %project_file% -make Release --no_wrap_diagnostics For C-STAT, the following command runs OK (and produces a .db file) but gives no messages to the console, hence the IAR C-STAT tool thinks everything is OK: iarbuild %project_file% -cstat_analyze Release -log all These give errors: iarbuild %project_file% -cstat_analyze Release -log all --no_wrap_diagnostics iarbuild %project_file% -cstat_analyze Release --no_wrap_diagnostics Once cstat .db file has been generated, I then convert these to html with the command (again, no warnings in the console): ireport --db .\Release\Obj\cstat.db --project %project_file% --full --output .\cstat_html\cstat_result.html |