From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754403AbdDMOrT (ORCPT ); Thu, 13 Apr 2017 10:47:19 -0400 Received: from mail.kernel.org ([198.145.29.136]:41730 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753456AbdDMOrQ (ORCPT ); Thu, 13 Apr 2017 10:47:16 -0400 Date: Thu, 13 Apr 2017 11:47:11 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: David Carrillo-Cisneros , linux-kernel@vger.kernel.org, Peter Zijlstra , Ingo Molnar , Alexander Shishkin , Andi Kleen , Simon Que , Wang Nan , Jiri Olsa , He Kuang , Kim Phillips , Masami Hiramatsu , Stephane Eranian , Paul Turner Subject: Re: [PATCH 5/6] perf tools: disable JVMTI if no ELF support available Message-ID: <20170413144711.GP3275@kernel.org> References: <20170412081921.GD17517@krava> <20170412170745.26620-1-davidcc@google.com> <20170412173322.GA1780@krava> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170412173322.GA1780@krava> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.8.0 (2017-02-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Wed, Apr 12, 2017 at 07:33:22PM +0200, Jiri Olsa escreveu: > On Wed, Apr 12, 2017 at 10:07:45AM -0700, David Carrillo-Cisneros wrote: > > The build of JVMTI depends on LIBELF (-lelf). Make Makefile.conf > > check this dependendancy and notify user when not present. > > > > v2: Comma nitpicking. > > I think Arnaldo would change that.. but thanks! ;-) But its so great that you guys offloaded that nitpicking part from me... ;-) Thanks, applied, together with Kim's Tested-by. - Arnaldo > jirka > > > > > Signed-off-by: David Carrillo-Cisneros > > --- > > tools/perf/Makefile.config | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/tools/perf/Makefile.config b/tools/perf/Makefile.config > > index cfd6015229a2..279c303b2c22 100644 > > --- a/tools/perf/Makefile.config > > +++ b/tools/perf/Makefile.config > > @@ -274,6 +274,7 @@ ifdef NO_LIBELF > > NO_LIBUNWIND := 1 > > NO_LIBDW_DWARF_UNWIND := 1 > > NO_LIBBPF := 1 > > + NO_JVMTI := 1 > > else > > ifeq ($(feature-libelf), 0) > > ifeq ($(feature-glibc), 1) > > @@ -283,7 +284,7 @@ else > > LIBC_SUPPORT := 1 > > endif > > ifeq ($(LIBC_SUPPORT),1) > > - msg := $(warning No libelf found, disables 'probe' tool and BPF support in 'perf record', please install libelf-dev, libelf-devel or elfutils-libelf-devel); > > + msg := $(warning No libelf found. Disables 'probe' tool, jvmti and BPF support in 'perf record'. Please install libelf-dev, libelf-devel or elfutils-libelf-devel); > > > > NO_LIBELF := 1 > > NO_DWARF := 1 > > @@ -291,6 +292,7 @@ else > > NO_LIBUNWIND := 1 > > NO_LIBDW_DWARF_UNWIND := 1 > > NO_LIBBPF := 1 > > + NO_JVMTI := 1 > > else > > ifneq ($(filter s% -static%,$(LDFLAGS),),) > > msg := $(error No static glibc found, please install glibc-static); > > -- > > 2.12.2.715.g7642488e1d-goog > >