From 1c9817af0d29f04e94f38186feb3f3a3c8d08ddc Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 12 Nov 2022 16:13:03 +0900 Subject: [PATCH] Bump libbpf to v1.0.1 --- .github/workflows/build.yml | 2 +- README.rst | 4 ++-- docker/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 15cc54b6..ed408fe1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/README.rst b/README.rst index 12891458..174f209d 100644 --- a/README.rst +++ b/README.rst @@ -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 -`_. nghttpx +`_. 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 .. diff --git a/docker/Dockerfile b/docker/Dockerfile index 70a1392c..b0c8532f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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 .. && \