mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-08 14:34:08 +07:00
20 lines
578 B
Bash
20 lines
578 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Version of libbpf to fetch headers from
|
|
LIBBPF_VERSION=1.1.0
|
|
|
|
# The headers we want
|
|
prefix=libbpf-"$LIBBPF_VERSION"
|
|
headers=(
|
|
"$prefix"/LICENSE.BSD-2-Clause
|
|
"$prefix"/src/bpf_endian.h
|
|
"$prefix"/src/bpf_helper_defs.h
|
|
"$prefix"/src/bpf_helpers.h
|
|
"$prefix"/src/bpf_tracing.h
|
|
"$prefix"/src/bpf_core_read.h
|
|
)
|
|
|
|
# Fetch libbpf release and extract the desired headers
|
|
dir_to=$(dirname $0)
|
|
curl -sL "https://github.com/libbpf/libbpf/archive/refs/tags/v${LIBBPF_VERSION}.tar.gz" | \
|
|
tar -xz --xform='s#.*/##' -C "$dir_to" "${headers[@]}" |