From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752777AbdGSBUy (ORCPT ); Tue, 18 Jul 2017 21:20:54 -0400 Received: from mail-pf0-f169.google.com ([209.85.192.169]:35219 "EHLO mail-pf0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752498AbdGSBUw (ORCPT ); Tue, 18 Jul 2017 21:20:52 -0400 From: David Carrillo-Cisneros To: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Jiri Olsa Cc: Kees Kook , Sudeep Holla , Alexander Shishkin , Wang Nan , Elena Reshetova , Stephane Eranian , Paul Turner , Peter Zijlstra , Ingo Molnar , Sudeep Holla Subject: [PATCH 4/4] tools: perf: Fix linker error when libelf config is disabled Date: Tue, 18 Jul 2017 18:20:40 -0700 Message-Id: <20170719012040.99522-1-davidcc@google.com> X-Mailer: git-send-email 2.14.0.rc0.284.gd933b75aa4-goog Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Sudeep Holla When libelf is disabled in the configuration, we get the following linker error: LINK libperf-jvmti.so ld: cannot find -lelf Makefile.perf:515: recipe for target 'libperf-jvmti.so' failed Jiri pointed out that both librt and libelf are not really required. So this patch fixes the linker error by getting rid of unwanted libraries in the linker stage. Fixes: 209045adc2bb ("perf tools: add JVMTI agent library") Acked-by: Jiri Olsa Cc: Peter Zijlstra Cc: Ingo Molnar Cc: Stephane Eranian Signed-off-by: Sudeep Holla Acked-by: David Carrillo-Cisneros --- tools/perf/Makefile.perf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 100a6c1670c8..d66f90e6be5c 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -518,7 +518,7 @@ $(LIBJVMTI_IN): FORCE $(Q)$(MAKE) -f $(srctree)/tools/build/Makefile.build dir=jvmti obj=jvmti $(OUTPUT)$(LIBJVMTI): $(LIBJVMTI_IN) - $(QUIET_LINK)$(CC) -shared -Wl,-soname -Wl,$(LIBJVMTI) -o $@ $< -lelf -lrt + $(QUIET_LINK)$(CC) -shared -Wl,-soname -Wl,$(LIBJVMTI) -o $@ $< endif $(patsubst perf-%,%.o,$(PROGRAMS)): $(wildcard */*.h) -- 2.13.2.932.g7449e964c-goog