kbuild: unify no-compiler-targets and no-sync-config-targets
Now that vdso_install does not depend on any in-tree build artifact, it no longer needs a compiler, making no-compiler-targets the same as no-sync-config-targets. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
This commit is contained in:
parent
56769ba4b2
commit
9d361173ed
13
Makefile
13
Makefile
@ -277,10 +277,6 @@ no-dot-config-targets := $(clean-targets) \
|
|||||||
$(version_h) headers headers_% archheaders archscripts \
|
$(version_h) headers headers_% archheaders archscripts \
|
||||||
%asm-generic kernelversion %src-pkg dt_binding_check \
|
%asm-generic kernelversion %src-pkg dt_binding_check \
|
||||||
outputmakefile rustavailable rustfmt rustfmtcheck
|
outputmakefile rustavailable rustfmt rustfmtcheck
|
||||||
# Installation targets should not require compiler. Unfortunately, vdso_install
|
|
||||||
# is an exception where build artifacts may be updated. This must be fixed.
|
|
||||||
no-compiler-targets := $(no-dot-config-targets) install dtbs_install \
|
|
||||||
headers_install modules_install modules_sign kernelrelease image_name
|
|
||||||
no-sync-config-targets := $(no-dot-config-targets) %install modules_sign kernelrelease \
|
no-sync-config-targets := $(no-dot-config-targets) %install modules_sign kernelrelease \
|
||||||
image_name
|
image_name
|
||||||
single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.rsi %.s %.symtypes %/
|
single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.rsi %.s %.symtypes %/
|
||||||
@ -288,7 +284,6 @@ single-targets := %.a %.i %.ko %.lds %.ll %.lst %.mod %.o %.rsi %.s %.symtypes %
|
|||||||
config-build :=
|
config-build :=
|
||||||
mixed-build :=
|
mixed-build :=
|
||||||
need-config := 1
|
need-config := 1
|
||||||
need-compiler := 1
|
|
||||||
may-sync-config := 1
|
may-sync-config := 1
|
||||||
single-build :=
|
single-build :=
|
||||||
|
|
||||||
@ -298,18 +293,14 @@ ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(filter $(no-compiler-targets), $(MAKECMDGOALS)),)
|
|
||||||
ifeq ($(filter-out $(no-compiler-targets), $(MAKECMDGOALS)),)
|
|
||||||
need-compiler :=
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq ($(filter $(no-sync-config-targets), $(MAKECMDGOALS)),)
|
ifneq ($(filter $(no-sync-config-targets), $(MAKECMDGOALS)),)
|
||||||
ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
|
ifeq ($(filter-out $(no-sync-config-targets), $(MAKECMDGOALS)),)
|
||||||
may-sync-config :=
|
may-sync-config :=
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
need-compiler := $(may-sync-config)
|
||||||
|
|
||||||
ifneq ($(KBUILD_EXTMOD),)
|
ifneq ($(KBUILD_EXTMOD),)
|
||||||
may-sync-config :=
|
may-sync-config :=
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user