Is it possible to get output in XML format from Clang scan-build analyzer? Currently following command generates output in html format to view in webbrowser.
scan-build xcodebuild -configuration Debug -sdk iphonesimulator
CppCheck on windows generate output in XML format. I need to parse result into same format as CppCheck. But I can't use cppCheck on MACOS. What I am trying to achieve is feed results into Sonar C++ Plugin so that I can create dashboard(continous integration) report of ObjectiveC project. Sonar C++ plugin uses CppCheck to static analyze the code.
Any input will greatly appreciated.