[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210908032847.18683-1-kortanzh@gmail.com>
Date: Wed, 8 Sep 2021 11:28:48 +0800
From: Kortan <kortanzh@...il.com>
To: nathan@...nel.org, ndesaulniers@...gle.com
Cc: masahiroy@...nel.org, linux-kbuild@...r.kernel.org,
llvm@...ts.linux.dev, clang-built-linux@...glegroups.com,
linux-kernel@...r.kernel.org, Kortan <kortanzh@...il.com>
Subject: [PATCH v2] gen_compile_commands: fix missing 'sys' package
We need to import the 'sys' package since the script has called
sys.exit() method.
Signed-off-by: Kortan <kortanzh@...il.com>
---
Changes v1 -> v2:
* Fix commit title.
* Improve commit message.
scripts/clang-tools/gen_compile_commands.py | 1 +
1 file changed, 1 insertion(+)
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'
--
2.33.0
Powered by blists - more mailing lists