Skip to content

Commit

Permalink
caa: Re-add ppc64le support to build
Browse files Browse the repository at this point in the history
When the arm support was added in #2194 it seems
to have broken ppc64le builds: e.g.
https://github.com/confidential-containers/cloud-api-adaptor/actions/runs/12747057891
so try and fix this

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
  • Loading branch information
stevenhorsman committed Jan 17, 2025
1 parent d07938d commit aaabd4f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cloud-api-adaptor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ ifeq ($(ARCH),aarch64)
else ifeq ($(ARCH),s390x)
TARGET_ARCH := s390x
PROTOC_ARCH := s390_64
else ifeq ($(ARCH),ppc64le)
TARGET_ARCH := ppc64le
PROTOC_ARCH := ppc64le_64
endif

# Default is dev build. To create release build set RELEASE_BUILD=true
Expand Down

0 comments on commit aaabd4f

Please sign in to comment.