libbpf: make libbpf.map source of truth for libbpf version
authorAndrii Nakryiko <andriin@fb.com>
Wed, 14 Aug 2019 20:05:48 +0000 (13:05 -0700)
committerAlexei Starovoitov <ast@kernel.org>
Fri, 16 Aug 2019 00:03:26 +0000 (17:03 -0700)
commitdadb81d0afe732a7670f7c1bd287dada163a9f2f
treebdf3dfda685237cf941a40af6ac23504e4ddf41b
parent37b7c058d4103b7ea8fb3773d330a883c0f66592
libbpf: make libbpf.map source of truth for libbpf version

Currently libbpf version is specified in 2 places: libbpf.map and
Makefile. They easily get out of sync and it's very easy to update one,
but forget to update another one. In addition, Github projection of
libbpf has to maintain its own version which has to be remembered to be
kept in sync manually, which is very error-prone approach.

This patch makes libbpf.map a source of truth for libbpf version and
uses shell invocation to parse out correct full and major libbpf version
to use during build. Now we need to make sure that once new release
cycle starts, we need to add (initially) empty section to libbpf.map
with correct latest version.

This also will make it possible to keep Github projection consistent
with kernel sources version of libbpf by adopting similar parsing of
version from libbpf.map.

v2->v3:
- grep -o + sort -rV (Andrey);

v1->v2:
- eager version vars evaluation (Jakub);
- simplified version regex (Andrey);

Cc: Andrey Ignatov <rdna@fb.com>
Signed-off-by: Andrii Nakryiko <andriin@fb.com>
Acked-by: Andrey Ignatov <rdna@fb.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
tools/lib/bpf/Makefile
tools/lib/bpf/libbpf.map