[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YTjt5C7xTqNLUSl/@archlinux-ax161>
Date: Wed, 8 Sep 2021 10:07:48 -0700
From: Nathan Chancellor <nathan@...nel.org>
To: Kortan <kortanzh@...il.com>
Cc: ndesaulniers@...gle.com, masahiroy@...nel.org,
linux-kbuild@...r.kernel.org, llvm@...ts.linux.dev,
clang-built-linux@...glegroups.com, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] gen_compile_commands: fix missing 'sys' package
On Wed, Sep 08, 2021 at 11:28:48AM +0800, Kortan wrote:
> We need to import the 'sys' package since the script has called
> sys.exit() method.
>
> Signed-off-by: Kortan <kortanzh@...il.com>
Thank you for making those changes!
I should have mentioned that this probably warrants a Fixes: tag, which
can be generated by running:
$ git show -s --format='Fixes: %h ("%s")' 6ad7cbc01527223f3f92baac9b122f15651cf76b
Fixes: 6ad7cbc01527 ("Makefile: Add clang-tidy and static analyzer support to makefile")
as that was the patch that introduced this issue. I personally have a
git alias for this as it comes up enough.
$ git config --get alias.fixes
show -s --format="Fixes: %h (\"%s\")"
I do not think this warrants a v3, just something to keep in mind for
the future.
Fixes: 6ad7cbc01527 ("Makefile: Add clang-tidy and static analyzer support to makefile")
Reviewed-by: Nathan Chancellor <nathan@...nel.org>
> ---
> 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