I agree this would be good.

You can get it to work in a way. The publisher looks for reports in the folder clangScanBuildReports so you should make that the output folder for scan-build. e.g.:

scan-build -o clangScanBuildReports make

In practice it does not work well with multiple scan-build commands because it moves report files from the datestamped folder up a directory. Therefore you have to move the other html files up a directory too. e.g.:

scan-build -o clangScanBuildReports ./configure
scan-build -o clangScanBuildReports make
mv clangScanBuildReports//report.html clangScanBuildReports

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to