diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-12-23 12:58:33 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-01-06 18:11:14 -0500 |
commit | 936d120d5f6406377e622da3167cafc811d053ea (patch) | |
tree | d06d2125c51bc0f81146d18f23f0f5dd2aaedeed /tools | |
parent | c6a5f88f335ec43d2850d62bc4924f719d265670 (diff) |
tools build feature: Use value assignment form for FEATURE-DUMP file
Changing the contents of the FEATURE-DUMP file, so it looks like:
feature-backtrace=1
feature-dwarf=0
feature-fortify-source=1
feature-sync-compare-and-swap=0
This way it could get included in sub projects, so they won't be forced
to redo features detection.
Also now storing the complete set of features.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Wang Nan <wangnan0@huawei.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama <pi3orama@163.com>
Link: http://lkml.kernel.org/r/1450893514-9158-5-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/build/Makefile.feature | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/tools/build/Makefile.feature b/tools/build/Makefile.feature index b1b262eb5bea..02db3cdff20f 100644 --- a/tools/build/Makefile.feature +++ b/tools/build/Makefile.feature | |||
@@ -129,8 +129,24 @@ endef | |||
129 | feature_assign = feature-$(1)=$(feature-$(1)) | 129 | feature_assign = feature-$(1)=$(feature-$(1)) |
130 | 130 | ||
131 | FEATURE_DUMP_FILENAME = $(OUTPUT)FEATURE-DUMP$(FEATURE_USER) | 131 | FEATURE_DUMP_FILENAME = $(OUTPUT)FEATURE-DUMP$(FEATURE_USER) |
132 | FEATURE_DUMP := $(foreach feat,$(FEATURE_DISPLAY),$(call feature_assign,$(feat))) | 132 | FEATURE_DUMP := $(shell touch $(FEATURE_DUMP_FILENAME); cat $(FEATURE_DUMP_FILENAME)) |
133 | FEATURE_DUMP_FILE := $(shell touch $(FEATURE_DUMP_FILENAME); cat $(FEATURE_DUMP_FILENAME)) | 133 | |
134 | feature_dump_check = $(eval $(feature_dump_check_code)) | ||
135 | define feature_dump_check_code | ||
136 | ifeq ($(findstring $(1),$(FEATURE_DUMP)),) | ||
137 | $(2) := 1 | ||
138 | endif | ||
139 | endef | ||
140 | |||
141 | # | ||
142 | # First check if any test from FEATURE_DISPLAY | ||
143 | # and set feature_display := 1 if it does | ||
144 | $(foreach feat,$(FEATURE_DISPLAY),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_display)) | ||
145 | |||
146 | # | ||
147 | # Now also check if any other test changed, | ||
148 | # so we force FEATURE-DUMP generation | ||
149 | $(foreach feat,$(FEATURE_TESTS),$(call feature_dump_check,$(call feature_assign,$(feat)),feature_dump_changed)) | ||
134 | 150 | ||
135 | # The $(feature_display) controls the default detection message | 151 | # The $(feature_display) controls the default detection message |
136 | # output. It's set if: | 152 | # output. It's set if: |
@@ -139,9 +155,9 @@ FEATURE_DUMP_FILE := $(shell touch $(FEATURE_DUMP_FILENAME); cat $(FEATURE_DUMP_ | |||
139 | # - one of the $(FEATURE_DISPLAY) is not detected | 155 | # - one of the $(FEATURE_DISPLAY) is not detected |
140 | # - VF is enabled | 156 | # - VF is enabled |
141 | 157 | ||
142 | ifneq ("$(FEATURE_DUMP)","$(FEATURE_DUMP_FILE)") | 158 | ifeq ($(feature_dump_changed),1) |
143 | $(shell echo "$(FEATURE_DUMP)" > $(FEATURE_DUMP_FILENAME)) | 159 | $(shell rm -f $(FEATURE_DUMP_FILENAME)) |
144 | feature_display := 1 | 160 | $(foreach feat,$(FEATURE_TESTS),$(shell echo "$(call feature_assign,$(feat))" >> $(FEATURE_DUMP_FILENAME))) |
145 | endif | 161 | endif |
146 | 162 | ||
147 | feature_display_check = $(eval $(feature_check_display_code)) | 163 | feature_display_check = $(eval $(feature_check_display_code)) |