llvm.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] gen_compile_commands: fix missing 'sys' package
@ 2021-09-08  3:28 Kortan
  2021-09-08 17:07 ` Nathan Chancellor
  2021-09-09 17:22 ` Nick Desaulniers
  0 siblings, 2 replies; 5+ messages in thread
From: Kortan @ 2021-09-08  3:28 UTC (permalink / raw)
  To: nathan, ndesaulniers
  Cc: masahiroy, linux-kbuild, llvm, clang-built-linux, linux-kernel, Kortan

We need to import the 'sys' package since the script has called
sys.exit() method.

Signed-off-by: Kortan <kortanzh@gmail.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


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-09-09 19:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-08  3:28 [PATCH v2] gen_compile_commands: fix missing 'sys' package Kortan
2021-09-08 17:07 ` Nathan Chancellor
2021-09-09 11:01   ` Masahiro Yamada
2021-09-09 17:22 ` Nick Desaulniers
2021-09-09 19:28   ` Nathan Chancellor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).