Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1690873
| Path | csiph.com!goblin3!goblin.stu.neva.ru!news.redatomik.org!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | David Carrillo-Cisneros <davidcc@google.com> |
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/4] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile |
| Date | Wed, 19 Jul 2017 03:20:02 +0200 |
| Message-ID | <u4LOG-1ts-17@gated-at.bofh.it> (permalink) |
| References | <u4LOF-1ts-3@gated-at.bofh.it> |
| X-Original-To | linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo <acme@kernel.org>, Jiri Olsa <jolsa@kernel.org> |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=eVR3MK61Cg9UJAMwXCoyr5a94curO2gqy5tSXMfwTsk=; b=FxaNHtYH5wbyOO48K+Xkw9Pli9V1eniPGSEgEWbCyg/zQDwgAGjh8/bOnAgmWigBIO RuSeMT8GW/7aKdImRMv7B9BA+21kdw0Nl21Rf1tN4NfKe+jUYIWzg4R+B9mVEJHcvf2r ZQDqHVv4DiNQHUrIknBDGcqB16vYGlzVxg5rdObqSyoRSU8O389Egv+HmxiahrajPoh4 Gl7xAHkQ1xJH5OmdEYYEQd1TfCvmoUkcDXc69PY6xCXc7DmrAhNAHIEfBtfQbUriqMyH ry4KAMjNC4Jb6dfHp32nkAIi/Q9h5l00HDcnuUCNYqJNabrzQF+DJtMkJL0LoIUMf8n/ JSrg== |
| X-Google-Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=eVR3MK61Cg9UJAMwXCoyr5a94curO2gqy5tSXMfwTsk=; b=q1nbn00LGKM4IWcmYJSHgVsadm4JcJPcZuH9lLmWOtVMbfLcy+hMjsNPmKXmHl9bTl gMEpyb7u3PfqexUrWwcIVJm5X6Huhl6GBVKDWZYnWTObtNwfKOwyOlQhYD0IZNBVDEyX 6TYVsvRyFnT+IK+OdGM/seuAKLoeKXml1I7q4wk/Ba6F3GZC5p6gh0PC3eJLrMgsKLpE pIlWbmoR1zBNSCmTPLGI0vSvOG1zD7tD6RLPDjQAOTLTEE0ge/r2IK2jPOewSRQ43ufg urpz488MBVwF9pb8JsV6Mi2iQYLJDATKMo3I2PlFjUXqvfmDgKt9dX8NyCp1o7CGH0Po WZYA== |
| X-Gm-Message-State | AIVw113U5Vdn9YdEFnvJxFYO/zZ2uaTEwyfKWtM08jCgG/d6CBqeSkf8 WKZ4N3uN4rFhdtwMSOBbLg== |
| X-Received | by 10.98.200.24 with SMTP id z24mr369612pff.205.1500427143032; Tue, 18 Jul 2017 18:19:03 -0700 (PDT) |
| X-Mailer | git-send-email 2.14.0.rc0.284.gd933b75aa4-goog |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 44 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Kees Kook <keescook@chromium.org>, Sudeep Holla <Sudeep.Holla@arm.com>, Alexander Shishkin <alexander.shishkin@linux.intel.com>, Wang Nan <wangnan0@huawei.com>, Elena Reshetova <elena.reshetova@intel.com>, Stephane Eranian <eranian@google.com>, Paul Turner <pjt@google.com>, David Carrillo-Cisneros <davidcc@google.com> |
| X-Original-Date | Tue, 18 Jul 2017 18:18:37 -0700 |
| X-Original-Message-ID | <20170719011839.99399-3-davidcc@google.com> |
| X-Original-References | <20170719011839.99399-1-davidcc@google.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1690873 |
Show key headers only | View raw
The goal is to allow users to override linking of libraries that were automatically added to PERFLIBS. EXCLUDE_EXTLIBS contains linker flags to be removed from LIBS while EXTRA_PERFLIBS contains linker flags to be added. My use case is to force certain library to be build statically, e.g. for libelf: EXCLUDE_EXTLIBS=-lelf EXTRA_PERFLIBS=path/libelf.a Signed-off-by: David Carrillo-Cisneros <davidcc@google.com> --- tools/perf/Makefile.perf | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 5008f51a08a2..100a6c1670c8 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -33,6 +33,11 @@ include ../scripts/utilities.mak # # Define EXTRA_CFLAGS=-m64 or EXTRA_CFLAGS=-m32 as appropriate for cross-builds. # +# Define EXCLUDE_EXTLIBS=-lmylib to exclude libmylib from the auto-generated +# EXTLIBS. +# +# Define EXTRA_PERFLIBS to pass extra libraries to PERFLIBS. +# # Define NO_DWARF if you do not want debug-info analysis feature at all. # # Define WERROR=0 to disable treating any warnings as errors. @@ -352,7 +357,8 @@ ifdef ASCIIDOC8 export ASCIIDOC8 endif -LIBS = -Wl,--whole-archive $(PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group +EXTLIBS := $(call filter-out,$(EXCLUDE_EXTLIBS),$(EXTLIBS)) +LIBS = -Wl,--whole-archive $(PERFLIBS) $(EXTRA_PERFLIBS) -Wl,--no-whole-archive -Wl,--start-group $(EXTLIBS) -Wl,--end-group ifeq ($(USE_CLANG), 1) CLANGLIBS_LIST = AST Basic CodeGen Driver Frontend Lex Tooling Edit Sema Analysis Parse Serialization -- 2.13.2.932.g7449e964c-goog
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/4] Resubmitted forgotten patches David Carrillo-Cisneros <davidcc@google.com> - 2017-07-19 03:20 +0200
[PATCH 4/4] tools: perf: Fix linker error when libelf config is disabled David Carrillo-Cisneros <davidcc@google.com> - 2017-07-19 03:20 +0200
[tip:perf/core] perf jvmti: Fix linker error when libelf config is disabled tip-bot for Sudeep Holla <tipbot@zytor.com> - 2017-07-26 19:30 +0200
[PATCH 1/4] perf tool cgroup: Initialize cgroup refcnt with refcount_set David Carrillo-Cisneros <davidcc@google.com> - 2017-07-19 03:20 +0200
Re: [PATCH 1/4] perf tool cgroup: Initialize cgroup refcnt with refcount_set Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-07-21 19:00 +0200
[PATCH 2/4] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile David Carrillo-Cisneros <davidcc@google.com> - 2017-07-19 03:20 +0200
[tip:perf/core] perf tools: Add EXCLUDE_EXTLIBS and EXTRA_PERFLIBS to makefile tip-bot for David Carrillo-Cisneros <tipbot@zytor.com> - 2017-07-26 19:30 +0200
Re: [PATCH 0/4] Resubmitted forgotten patches Jiri Olsa <jolsa@redhat.com> - 2017-07-19 10:50 +0200
Re: [PATCH 0/4] Resubmitted forgotten patches Arnaldo Carvalho de Melo <acme@kernel.org> - 2017-07-21 19:10 +0200
csiph-web