From 4eba81eb096fb512d67f0d30e5bc94fbc51e349d Mon Sep 17 00:00:00 2001 From: Max Wash Date: Thu, 19 Jan 2023 20:53:12 +0000 Subject: [PATCH] Removed debug messages from generate_compile_commands --- tools/make/generate_compile_commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/make/generate_compile_commands.py b/tools/make/generate_compile_commands.py index 0fa815c..872fe89 100755 --- a/tools/make/generate_compile_commands.py +++ b/tools/make/generate_compile_commands.py @@ -23,7 +23,6 @@ for line in make_output_lines: if len(line_parts) >= 2 and 'Entering directory' in line: prefix = 'Entering directory ' new_dir = line[line.find(prefix) + len(prefix)+1:-1] - print('new dir: {}'.format(new_dir)) dir_stack.append(new_dir) continue