[CRIU] [PATCH 02/11] nmk: Filter out already seen targets from collect-deps
Dmitry Safonov
0x7f454c46 at gmail.com
Wed Jul 18 17:45:21 MSK 2018
2018-07-12 13:51 GMT+01:00 Cyrill Gorcunov <gorcunov at gmail.com>:
> Signed-off-by: Cyrill Gorcunov <gorcunov at gmail.com>
> ---
> scripts/nmk/scripts/build.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/nmk/scripts/build.mk b/scripts/nmk/scripts/build.mk
> index 890a912d09b0..f16af03f2519 100644
> --- a/scripts/nmk/scripts/build.mk
> +++ b/scripts/nmk/scripts/build.mk
> @@ -261,7 +261,7 @@ define collect-deps
> ifeq ($(lib-target),$(1))
> deps-y += $(lib-y:.o=.d)
> endif
> - ifneq ($(filter all $(all-y) $(hostprogs-y),$(1)),)
> + ifneq ($(filter all $(filter-out $(builtin-target) $(lib-target), $(all-y)) $(hostprogs-y),$(1)),)
> deps-y += $(obj-y:.o=.d)
> deps-y += $(lib-y:.o=.d)
> deps-y += $(foreach t,$(target),$(call objectify,$($(t)-lib-y:.o=.d)) $(call objectify,$($(t)-obj-y:.o=.d)))
I wish it was a bit less messy :<
So, before for the $(lib-target):
ifneq ($(filter all $(all-y) $(hostprogs-y),$(1)),)
$(all-y) contains $(lib-target) and in result we don't do deps-y
inside ifneq, right?
After the change filter-out of lib-target will make sure that ifneq is true and
deps-y are updated (again?)
So, we will have `deps-y += $(lib-y:.o=.d)` twice?
IOW, I did:
--- a/scripts/nmk/scripts/build.mk
+++ b/scripts/nmk/scripts/build.mk
@@ -266,6 +266,9 @@ define collect-deps
deps-y += $(lib-y:.o=.d)
deps-y += $(foreach t,$(target),$(call
objectify,$($(t)-lib-y:.o=.d)) $(call objectify,$($(t)-obj-y:.o=.d)))
deps-y += $(foreach t,$(hostprogs-y),$(addprefix
$(obj)/,$($(t)-objs:.o=.d)))
+ ifeq ($(lib-target),$(1))
+ $(error lib-target adds deps again)
+ endif
endif
endef
And the result is:
GEN include/common/config.h
/home/dima/src/criu/scripts/nmk/scripts/build.mk:277: *** lib-target
adds deps again. Stop.
make: *** [Makefile.compel:52: compel/plugins/std.lib.a] Error 2
make: *** Waiting for unfinished jobs....
Thanks,
Dmitry
More information about the CRIU
mailing list