Merge pull request #1830 from nghttp2/bump-libbpf

Bump libbpf to v1.0.1
This commit is contained in:
Tatsuhiro Tsujikawa 2022-11-12 16:43:19 +09:00 committed by GitHub
commit 0fb2c6f4f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -94,7 +94,7 @@ jobs:
- name: Build libbpf
if: matrix.http3 == 'http3' && matrix.compiler == 'clang' && runner.os == 'Linux'
run: |
git clone -b v1.0.0 https://github.com/libbpf/libbpf
git clone -b v1.0.1 https://github.com/libbpf/libbpf
cd libbpf
PREFIX=$PWD/build make -C src install

View File

@ -159,7 +159,7 @@ Use ``--with-libbpf`` configure option to build eBPF program.
libelf-dev is needed to build libbpf.
For Ubuntu 20.04, you can build libbpf from `the source code
<https://github.com/libbpf/libbpf/releases/tag/v1.0.0>`_. nghttpx
<https://github.com/libbpf/libbpf/releases/tag/v1.0.1>`_. nghttpx
requires eBPF program for reloading its configuration and hot swapping
its executable.
@ -393,7 +393,7 @@ from source:
.. code-block:: text
$ git clone --depth 1 -b v1.0.0 https://github.com/libbpf/libbpf
$ git clone --depth 1 -b v1.0.1 https://github.com/libbpf/libbpf
$ cd libbpf
$ PREFIX=$PWD/build make -C src install
$ cd ..

View File

@ -36,7 +36,7 @@ RUN git clone --depth 1 -b v0.10.0 https://github.com/ngtcp2/ngtcp2 && \
cd .. && \
rm -rf ngtcp2
RUN git clone --depth 1 -b v1.0.0 https://github.com/libbpf/libbpf && \
RUN git clone --depth 1 -b v1.0.1 https://github.com/libbpf/libbpf && \
cd libbpf && \
PREFIX=/usr/local make -C src install && \
cd .. && \