From 6f303ce61cf740305504f88af357de128c8bed53 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Tue, 21 Jun 2022 16:18:12 +0200 Subject: [PATCH] daca@home: Set '--inline-suppr' flag. --- tools/donate_cpu_lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/donate_cpu_lib.py b/tools/donate_cpu_lib.py index 94681868e..7199bfc73 100644 --- a/tools/donate_cpu_lib.py +++ b/tools/donate_cpu_lib.py @@ -15,7 +15,7 @@ import shlex # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # changes) -CLIENT_VERSION = "1.3.24" +CLIENT_VERSION = "1.3.25" # Timeout for analysis with Cppcheck in seconds CPPCHECK_TIMEOUT = 30 * 60 @@ -336,7 +336,7 @@ def scan_package(work_path, cppcheck_path, jobs, libraries, capture_callstack=Tr dir_to_scan = 'temp' # Reference for GNU C: https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html - options = libs + ' --showtime=top5 --check-library --inconclusive --enable=style,information --template=daca2' + options = libs + ' --showtime=top5 --check-library --inconclusive --enable=style,information --inline-suppr --template=daca2' options += ' -D__GNUC__ --platform=unix64' options += ' -rp={}'.format(dir_to_scan) if sys.platform == 'win32':