Skip to content

Commit 8e30b47

Browse files
committed
build: Add packages to the ppc64le Ubuntu image for perf
Allows newer perf to build on ppc64le.
1 parent 1519948 commit 8e30b47

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build/ubuntu/packages.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ if [[ "$machine" == "ppc64le" ]]; then
2020
PACKAGES+=" libhugetlbfs-dev"
2121
PACKAGES+=" libmnl-dev"
2222
PACKAGES+=" libmount-dev"
23-
if [[ "$major" -gt 20 ]]; then
23+
if [[ "$major" -ge 22 ]]; then
2424
PACKAGES+=" liburing-dev"
25+
PACKAGES+=" pkg-config"
26+
PACKAGES+=" libelf-dev"
27+
PACKAGES+=" libtraceevent-dev"
2528
fi
2629

2730
# For the x86_64 container

0 commit comments

Comments
 (0)