Márton Csordás
Márton Csordás
@vChavezB what is the output of your `CodeChecker log` command? ``` [INFO 2021-12-10 10:56] - Starting build ... board version: v3.5-24V ... ``` Also can you please try to run...
@whisperity We change the review status by bug hash, so if you have 70 similar reports, it will "change" the review status of all the similar reports. Did you update...
@whisperity Can you please check this PR? I think I solved all your comments.
@andrewg-spectra By default in case of Sqlite if you start a CodeChecker server to an empty workspace directory (`CodeChecker server -w ~/workspace/my_empty_dir`) it will create a config database under this...
@jimis No, we didn't have an issue for this problem. I looked into the source code and it looks like the problem comes from here: https://github.com/Ericsson/codechecker/blob/f835d001e51a27cc5674faa31741cd6176cb1cb1/tools/report-converter/codechecker_report_converter/analyzers/sanitizers/parser.py#L136 So if the line...
@WallStProg CodeChecker can only execute Clang Tidy and Clang SA but we have created a converter tool to support the storage of other analyzer tools. For more information check the...
What happens if you run the following command on your system: `CodeChecker analyze -h`. Does it contain the following arguments: ``` cross translation unit analysis arguments: These arguments are only...
I think your problem is related to my PR: #3203
@basakerhz I hope so that it will be merged in the next release. It's still under review. I will try to ping my colleague to review it.
Under the hood in case of Clang Tidy first it will enable all the checkers in the default profile first: https://github.com/Ericsson/codechecker/blob/ed16b5d58f75002b465ea0944be0abf071f0b958/analyzer/codechecker_analyzer/analyzers/config_handler.py#L170-L172 After it will iterate over all the checkers enabled...