[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191202131847.30837-1-jolsa@kernel.org>
Date: Mon, 2 Dec 2019 14:18:40 +0100
From: Jiri Olsa <jolsa@...nel.org>
To: Arnaldo Carvalho de Melo <acme@...nel.org>
Cc: lkml <linux-kernel@...r.kernel.org>, netdev@...r.kernel.org,
bpf@...r.kernel.org, Ingo Molnar <mingo@...nel.org>,
Namhyung Kim <namhyung@...nel.org>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Michael Petlan <mpetlan@...hat.com>,
Toke Høiland-Jørgensen <toke@...hat.com>,
Jesper Dangaard Brouer <brouer@...hat.com>,
Daniel Borkmann <daniel@...earbox.net>,
Alexei Starovoitov <alexei.starovoitov@...il.com>,
Martin KaFai Lau <kafai@...com>,
Song Liu <songliubraving@...com>, Yonghong Song <yhs@...com>,
Andrii Nakryiko <andriin@...com>,
Quentin Monnet <quentin.monnet@...ronome.com>
Subject: [PATCHv4 0/6] perf/bpftool: Allow to link libbpf dynamically
hi,
adding support to link bpftool with libbpf dynamically,
and config change for perf.
It's now possible to use:
$ make -C tools/bpf/bpftool/ LIBBPF_DYNAMIC=1
which will detect libbpf devel package and if found, link it with bpftool.
It's possible to use arbitrary installed libbpf:
$ make -C tools/bpf/bpftool/ LIBBPF_DYNAMIC=1 LIBBPF_DIR=/tmp/libbpf/
I based this change on top of Arnaldo's perf/core, because
it contains libbpf feature detection code as dependency.
Also available in:
git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git
libbpf/dyn
v4 changes:
- based on Toke's v3 post, there's no need for additional API exports:
Since bpftool uses bits of libbpf that are not exported as public API in
the .so version, we also pass in libbpf.a to the linker, which allows it to
pick up the private functions from the static library without having to
expose them as ABI.
- changing some Makefile variable names
- documenting LIBBPF_DYNAMIC and LIBBPF_DIR in the Makefile comment
- extending test_bpftool_build.sh with libbpf dynamic link
thanks,
jirka
---
Jiri Olsa (6):
perf tools: Allow to specify libbpf install directory
bpftool: Allow to link libbpf dynamically
bpftool: Rename BPF_DIR Makefile variable to LIBBPF_SRC_DIR
bpftool: Rename LIBBPF_OUTPUT Makefile variable to LIBBPF_BUILD_OUTPUT
bpftool: Rename LIBBPF_PATH Makefile variable to LIBBPF_BUILD_PATH
selftests, bpftool: Add build test for libbpf dynamic linking
tools/bpf/bpftool/Makefile | 54 ++++++++++++++++++++++++++++++++++++++++++++++--------
tools/perf/Makefile.config | 27 ++++++++++++++++++++-------
tools/testing/selftests/bpf/test_bpftool_build.sh | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 119 insertions(+), 15 deletions(-)
Powered by blists - more mailing lists