From 11680efe4ee32f7111a9a45f124c30a3691c25b9 Mon Sep 17 00:00:00 2001 From: Christy Norman Date: Thu, 28 Jan 2021 22:26:02 +0000 Subject: [PATCH] agent: README update to install protoc for ppc64le Add a bit to the agent README about installing protoc manually for Power (ppc64le) Fixes: #1068 Signed-off-by: Christy Norman --- src/agent/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/agent/README.md b/src/agent/README.md index 5bea6b10ea..cc47453bcc 100644 --- a/src/agent/README.md +++ b/src/agent/README.md @@ -49,6 +49,11 @@ $ rustup target add "${arch}-unknown-linux-musl" $ sudo ln -s /usr/bin/g++ /bin/musl-g++ ``` +ppc64le-only: Manually install `protoc`, e.g. +```bash +$ sudo dnf install protobuf-compiler +``` + Download the source files in the Kata containers repository and build the agent: ```bash $ GOPATH="${GOPATH:-$HOME/go}"