diff options
author | 2021-02-07 09:37:37 -0800 | |
---|---|---|
committer | 2021-02-07 09:37:37 -0800 | |
commit | 2db138bb9fa10f5652f55d3c3f427af54626a086 (patch) | |
tree | 1c4764f9cb8c03ac90cbc534b48ace2065f8ca84 /scripts/clang-tools/run-clang-tools.py | |
parent | Merge tag '5.11-rc6-smb3' of git://git.samba.org/sfrench/cifs-2.6 (diff) | |
parent | kallsyms: fix nonconverging kallsyms table with lld (diff) | |
download | wireguard-linux-2db138bb9fa10f5652f55d3c3f427af54626a086.tar.xz wireguard-linux-2db138bb9fa10f5652f55d3c3f427af54626a086.zip |
Merge tag 'kbuild-fixes-v5.11-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull Kbuild fixes from Masahiro Yamada:
- Use the 'python3' command to invoke python scripts because some
distributions do not provide the 'python' command any more.
- Clean-up and update documents
- Use pkg-config to search libcrypto
- Fix duplicated debug flags
- Ignore some more stubs in scripts/kallsyms.c
* tag 'kbuild-fixes-v5.11-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
kallsyms: fix nonconverging kallsyms table with lld
kbuild: fix duplicated flags in DEBUG_CFLAGS
scripts/clang-tools: switch explicitly to Python 3
kbuild: remove PYTHON variable
Documentation/llvm: Add a section about supported architectures
Revert "checkpatch: add check for keyword 'boolean' in Kconfig definitions"
scripts: use pkg-config to locate libcrypto
kconfig: mconf: fix HOSTCC call
doc: gcc-plugins: update gcc-plugins.rst
kbuild: simplify GCC_PLUGINS enablement in dummy-tools/gcc
Documentation/Kbuild: Remove references to gcc-plugin.sh
scripts: switch explicitly to Python 3
Diffstat (limited to '')
-rwxr-xr-x | scripts/clang-tools/run-clang-tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clang-tools/run-clang-tools.py b/scripts/clang-tools/run-clang-tools.py index fa7655c7cec0..f754415af398 100755 --- a/scripts/clang-tools/run-clang-tools.py +++ b/scripts/clang-tools/run-clang-tools.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0 # # Copyright (C) Google LLC, 2020 |