From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933518AbeAXL1j (ORCPT ); Wed, 24 Jan 2018 06:27:39 -0500 Received: from terminus.zytor.com ([65.50.211.136]:46311 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933129AbeAXL1h (ORCPT ); Wed, 24 Jan 2018 06:27:37 -0500 Date: Wed, 24 Jan 2018 03:23:12 -0800 From: tip-bot for Jiri Olsa Message-ID: Cc: alexander.shishkin@linux.intel.com, acme@redhat.com, ak@linux.intel.com, namhyung@kernel.org, peterz@infradead.org, mathieu.poirier@linaro.org, tglx@linutronix.de, hpa@zytor.com, dsahern@gmail.com, mingo@kernel.org, linux-kernel@vger.kernel.org, jolsa@kernel.org, jolsa@redhat.com Reply-To: peterz@infradead.org, mathieu.poirier@linaro.org, ak@linux.intel.com, acme@redhat.com, alexander.shishkin@linux.intel.com, namhyung@kernel.org, jolsa@redhat.com, jolsa@kernel.org, hpa@zytor.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, mingo@kernel.org, dsahern@gmail.com In-Reply-To: <20180109092646.GB11520@krava> References: <20180109092646.GB11520@krava> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf build: Display EXTRA features for VF=1 build Git-Commit-ID: 99402e0683ecea11db44fd1c59a65b4eb3bd2672 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 99402e0683ecea11db44fd1c59a65b4eb3bd2672 Gitweb: https://git.kernel.org/tip/99402e0683ecea11db44fd1c59a65b4eb3bd2672 Author: Jiri Olsa AuthorDate: Tue, 9 Jan 2018 10:26:46 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 23 Jan 2018 09:51:36 -0300 perf build: Display EXTRA features for VF=1 build Display the state of the rest of the features (FEATURE_TESTS_EXTRA) on a 'make VF=1' build. These features are detected manually by perf's Makefile.config so they can't be displayed with the main list, but only after we're done in Makefile.config. $ make VF=1 BUILD: Doing 'make -j4' parallel build Auto-detecting system features: ... dwarf: [ on ] ... dwarf_getlocations: [ on ] ... glibc: [ on ] ... gtk2: [ on ] SNIP ... timerfd: [ on ] ... sched_getcpu: [ on ] ... sdt: [ on ] ... setns: [ on ] extra features: ... bionic: [ OFF ] ... compile-32: [ on ] ... compile-x32: [ OFF ] ... cplus-demangle: [ on ] ... hello: [ OFF ] ... libbabeltrace: [ on ] ... liberty: [ on ] ... liberty-z: [ on ] ... libunwind-debug-frame: [ OFF ] ... libunwind-debug-frame-arm: [ OFF ] ... libunwind-debug-frame-aarch64: [ OFF ] SNIP Signed-off-by: Jiri Olsa Tested-by: Arnaldo Carvalho de Melo Cc: Alexander Shishkin Cc: Andi Kleen Cc: David Ahern Cc: Mathieu Poirier Cc: Namhyung Kim Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/20180109092646.GB11520@krava Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Makefile.config | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/perf/Makefile.config b/tools/perf/Makefile.config index 12dec6e..92265b3 100644 --- a/tools/perf/Makefile.config +++ b/tools/perf/Makefile.config @@ -947,6 +947,10 @@ define print_var_code endef ifeq ($(VF),1) + # Display EXTRA features which are detected manualy + # from here with feature_check call and thus cannot + # be partof global state output. + $(foreach feat,$(FEATURE_TESTS_EXTRA),$(call feature_print_status,$(feat),)) $(call print_var,prefix) $(call print_var,bindir) $(call print_var,libdir)