aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/perf/config/Makefile23
1 files changed, 19 insertions, 4 deletions
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile
index 39e6e6cca8ed..97a64c4631d3 100644
--- a/tools/perf/config/Makefile
+++ b/tools/perf/config/Makefile
@@ -591,9 +591,9 @@ endif
591# 591#
592# Print the result of the feature test: 592# Print the result of the feature test:
593# 593#
594feature_print = $(eval $(feature_print_code)) $(info $(MSG)) 594feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG))
595 595
596define feature_print_code 596define feature_print_status_code
597 ifeq ($(feature-$(1)), 1) 597 ifeq ($(feature-$(1)), 1)
598 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1)) 598 MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1))
599 else 599 else
@@ -601,6 +601,16 @@ define feature_print_code
601 endif 601 endif
602endef 602endef
603 603
604feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG))
605define feature_print_var_code
606 MSG = $(shell printf '...%30s: %s' $(1) $($(1)))
607endef
608
609feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG))
610define feature_print_text_code
611 MSG = $(shell printf '...%30s: %s' $(1) $(2))
612endef
613
604PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat)))) 614PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat))))
605PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES) 615PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES)
606 616
@@ -633,11 +643,16 @@ endif
633ifeq ($(display_lib),1) 643ifeq ($(display_lib),1)
634 $(info ) 644 $(info )
635 $(info Auto-detecting system features:) 645 $(info Auto-detecting system features:)
636 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print,$(feat),)) 646 $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),))
637endif 647endif
638 648
639ifeq ($(display_vf),1) 649ifeq ($(display_vf),1)
640 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print,$(feat),)) 650 $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),))
651 $(info )
652 $(call feature_print_var,prefix)
653 $(call feature_print_var,bindir)
654 $(call feature_print_var,libdir)
655 $(call feature_print_var,sysconfdir)
641endif 656endif
642 657
643ifeq ($(display_lib),1) 658ifeq ($(display_lib),1)