mirror of
https://github.com/danmar/cppcheck.git
synced 2025-01-15 17:12:30 +08:00
0f28f3e493
Currently the `AddonInfo` is generated and discarded on each addon invocation. This leads to an unnecessary process invocation for each addon on each file. Also if an addon is completely broken we will still perform the whole analysis only for it to be failed at the end so we should bail out early if we know it doesn't work at all.
26 lines
1.3 KiB
Plaintext
26 lines
1.3 KiB
Plaintext
Release Notes for Cppcheck 2.13
|
|
|
|
New checks:
|
|
-
|
|
|
|
Improved checking:
|
|
-
|
|
|
|
GUI:
|
|
-
|
|
|
|
Changed interface:
|
|
-
|
|
|
|
Deprecations:
|
|
- "--showtime=top5" has been deprecated and will be removed in Cppcheck 2.14. Please use --showtime=top5_file or --showtime=top5_summary instead.
|
|
|
|
Other:
|
|
- Windows builds now default to the `native` platform instead of `win32A` or `win64`. Please specify it explicitly if you depedent on it.
|
|
- The undocumented and deprecated command-line options `--template <template>` and `--template-format <template>` has been removed. Please use `--template=` and `--template-format=` instead.
|
|
- "--showtime=summary" will now show a single summary at the end instead of showing it after each file when using the thread execution (default on Windows)
|
|
- added "--showtime=none" to disable any previously specified showtime report. "--showtime=" without parameter is no longer valid.
|
|
- Multiple "--project" options are now prohibited. These would have overlapped each other and lead to unexpected behavior. Please use separate runs with a single "--project" option instead.
|
|
- "--project" can also no longer be used in conjunction with additional source files.
|
|
- If a addon cannot be found it will bail out immediately instead of continously writing errors and failing the analysis at the end.
|