Last active
December 31, 2024 01:11
-
-
Save sap1ens/827558883e1bd01709a52a4dedd2f10a to your computer and use it in GitHub Desktop.
Compile perf from scratch with a specific kernel version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
apt-get install -y git make gcc flex bison \ | |
libunwind8-dev libdwarf-dev libelf-dev libdw-dev systemtap-sdt-dev \ | |
libssl-dev libslang2-dev binutils-dev libzstd-dev libbabeltrace-dev \ | |
libiberty-dev libnuma-dev libcap-dev | |
git clone -b v5.10.205 --single-branch -n --depth=1 --filter=tree:0 \ | |
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git | |
cd linux-stable | |
git sparse-checkout set --no-cone tools scripts | |
git checkout | |
cd tools/perf | |
make |
kubectl run perf-builder --rm -it --restart='Never' --image ubuntu:22.04 --command -- bash
to launch a builder pod.
perf version --build-options
to check build features.
these are needed in runtime:
apt-get install -y libunwind8 libdwarf1 libelf1 libdw1 systemtap \
libslang2 binutils libzstd1 libbabeltrace1 libnuma1 libcap2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://xiaoyanzhuo.github.io/2019/01/18/Perf-Tool.html