From e59c48a6da71b7911996b7d25f1eb2b6365dd5cc Mon Sep 17 00:00:00 2001 From: Yu-Cheng Chen Date: Fri, 28 Jun 2024 08:38:29 +0800 Subject: [PATCH] Update libbpf commit hash libbpf has added a member `link` in the struct `bpf_map_skeleton`, which causes a build failure in SCX. This commit updates the libbpf commit hash to the latest version to avoid this error. Please refer to commit be998aa in libbpf repo. Signed-off-by: Yu-Cheng Chen --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e6e2f39..d74ada7 100644 --- a/meson.build +++ b/meson.build @@ -124,7 +124,7 @@ if should_build_libbpf endforeach message('Fetching libbpf repo') - libbpf_commit = '42065ea6627ff6e1ab4c65e51042a70fbf30ff7c' + libbpf_commit = 'c1a6c770c46c6e78ad6755bf596c23a4e6f6b216' run_command(fetch_libbpf, meson.current_build_dir(), libbpf_commit, check: true) make_jobs = 1