diff options
author | Kortan <kortanzh@gmail.com> | 2021-09-08 06:28:48 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-09-19 04:13:03 +0300 |
commit | ec783c7cb2495c5a3b8ca10db8056d43c528f940 (patch) | |
tree | 27fd3a1267310517702638f2502e671ee0da44f6 /scripts/clang-tools/gen_compile_commands.py | |
parent | aa0f5ea12e477b2940a57fcda4908627e0beed0f (diff) | |
download | linux-ec783c7cb2495c5a3b8ca10db8056d43c528f940.tar.xz |
gen_compile_commands: fix missing 'sys' package
We need to import the 'sys' package since the script has called
sys.exit() method.
Fixes: 6ad7cbc01527 ("Makefile: Add clang-tidy and static analyzer support to makefile")
Signed-off-by: Kortan <kortanzh@gmail.com>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/clang-tools/gen_compile_commands.py')
-rwxr-xr-x | scripts/clang-tools/gen_compile_commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/clang-tools/gen_compile_commands.py b/scripts/clang-tools/gen_compile_commands.py index 0033eedce003..1d1bde1fd45e 100755 --- a/scripts/clang-tools/gen_compile_commands.py +++ b/scripts/clang-tools/gen_compile_commands.py @@ -13,6 +13,7 @@ import logging import os import re import subprocess +import sys _DEFAULT_OUTPUT = 'compile_commands.json' _DEFAULT_LOG_LEVEL = 'WARNING' |