Skip to content

Commit d757f8b

Browse files
authored
fixed #12058 - donate_cpu_lib.py: removed --showtime=none option not supported by the previous version (#5538)
1 parent 7393083 commit d757f8b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/donate_cpu_lib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
1717
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
1818
# changes)
19-
CLIENT_VERSION = "1.3.49"
19+
CLIENT_VERSION = "1.3.50"
2020

2121
# Timeout for analysis with Cppcheck in seconds
2222
CPPCHECK_TIMEOUT = 30 * 60
@@ -443,7 +443,7 @@ def scan_package(cppcheck_path, source_path, libraries, capture_callstack=True):
443443
# TODO: temporarily disabled timing information - use --showtime=top5_summary when next version is released
444444
# TODO: remove missingInclude disabling when it no longer is implied by --enable=information
445445
# Reference for GNU C: https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html
446-
options = libs + ' --showtime=none --check-library --inconclusive --enable=style,information --inline-suppr --disable=missingInclude --suppress=unmatchedSuppression --template=daca2'
446+
options = libs + ' --check-library --inconclusive --enable=style,information --inline-suppr --disable=missingInclude --suppress=unmatchedSuppression --template=daca2'
447447
options += ' --debug-warnings --suppress=autoNoType --suppress=valueFlowBailout --suppress=bailoutUninitVar --suppress=symbolDatabaseWarning'
448448
options += ' -D__GNUC__ --platform=unix64'
449449
options_rp = options + ' -rp={}'.format(dir_to_scan)

0 commit comments

Comments
 (0)