add bootstrap files

This commit is contained in:
yunwei37
2023-05-07 01:25:01 +08:00
parent c6c180293f
commit fc1301094e
9 changed files with 479 additions and 134 deletions

View File

@@ -6,6 +6,9 @@ BPFTOOL_SRC := $(abspath ../../bpftool/src)
LIBBPF_OBJ := $(abspath $(OUTPUT)/libbpf.a)
BPFTOOL_OUTPUT ?= $(abspath $(OUTPUT)/bpftool)
BPFTOOL ?= $(BPFTOOL_OUTPUT)/bootstrap/bpftool
LIBBLAZESYM_SRC := $(abspath ../../blazesym/)
LIBBLAZESYM_OBJ := $(abspath $(OUTPUT)/libblazesym.a)
LIBBLAZESYM_HEADER := $(abspath $(OUTPUT)/blazesym.h)
ARCH ?= $(shell uname -m | sed 's/x86_64/x86/' \
| sed 's/arm.*/arm/' \
| sed 's/aarch64/arm64/' \

View File

@@ -1,4 +1,4 @@
# eBPF 入门实践教程:编写 eBPF 程序 profile 进行性能分析
# eBPF 入门实践教程:使用 eBPF 程序 profile 进行性能分析
## 背景