Skip to content

Instantly share code, notes, and snippets.

@sap1ens
Last active December 31, 2024 01:11
Show Gist options
  • Save sap1ens/827558883e1bd01709a52a4dedd2f10a to your computer and use it in GitHub Desktop.
Save sap1ens/827558883e1bd01709a52a4dedd2f10a to your computer and use it in GitHub Desktop.
Compile perf from scratch with a specific kernel version
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
@sap1ens
Copy link
Author

sap1ens commented Feb 26, 2024

@sap1ens
Copy link
Author

sap1ens commented Dec 30, 2024

kubectl run perf-builder --rm -it --restart='Never' --image ubuntu:22.04 --command -- bash

to launch a builder pod.

@sap1ens
Copy link
Author

sap1ens commented Dec 30, 2024

@sap1ens
Copy link
Author

sap1ens commented Dec 30, 2024

perf version --build-options

to check build features.

@sap1ens
Copy link
Author

sap1ens commented Dec 31, 2024

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