From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754937AbbCCGZ3 (ORCPT ); Tue, 3 Mar 2015 01:25:29 -0500 Received: from terminus.zytor.com ([198.137.202.10]:49306 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751536AbbCCGZ0 (ORCPT ); Tue, 3 Mar 2015 01:25:26 -0500 Date: Mon, 2 Mar 2015 22:24:57 -0800 From: tip-bot for Ingo Molnar Message-ID: Cc: mingo@kernel.org, hpa@zytor.com, jolsa@redhat.com, tglx@linutronix.de, acme@redhat.com, peterz@infradead.org, namhyung@kernel.org, david.ahern@oracle.com, linux-kernel@vger.kernel.org Reply-To: mingo@kernel.org, hpa@zytor.com, jolsa@redhat.com, namhyung@kernel.org, peterz@infradead.org, acme@redhat.com, tglx@linutronix.de, david.ahern@oracle.com, linux-kernel@vger.kernel.org In-Reply-To: <20150228084610.GE31887@gmail.com> References: <20150228084610.GE31887@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: Improve libbfd detection message Git-Commit-ID: 0189d7c45acd9fc9a7e6876dc55bc44ae8dc9a37 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: 0189d7c45acd9fc9a7e6876dc55bc44ae8dc9a37 Gitweb: http://git.kernel.org/tip/0189d7c45acd9fc9a7e6876dc55bc44ae8dc9a37 Author: Ingo Molnar AuthorDate: Sat, 28 Feb 2015 09:46:42 +0100 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 2 Mar 2015 12:16:35 -0300 perf tools: Improve libbfd detection message Before: No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling After: No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling Change the message to the standard 'please install' language and also add libiberty-dev suggestion for Ubuntu systems. Signed-off-by: Ingo Molnar Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/20150228084610.GE31887@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/config/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index aa2f0aa..e2350ad 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile @@ -635,7 +635,7 @@ else EXTLIBS += -liberty CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT else - msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling) + msg := $(warning No bfd.h/libbfd found, please install binutils-dev[el]/zlib-static/libiberty-dev to gain symbol demangling) CFLAGS += -DNO_DEMANGLE endif endif