Skip to content

Commit

Permalink
podvm: Allow setting of LIBC dynamically
Browse files Browse the repository at this point in the history
Fixes:confidential-containers#519

Signed-off-by: Pradipta Banerjee <[email protected]>
  • Loading branch information
bpradipt committed Jan 13, 2023
1 parent 30705a0 commit 0246800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podvm/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ IMAGE_PREFIX := podvm
HOST_ARCH := $(shell uname -m)
ARCH ?= $(HOST_ARCH)
DEB_ARCH := $(subst x86_64,amd64,$(ARCH))
LIBC := $(if $(findstring s390x,$(ARCH)),gnu,musl)
LIBC ?= $(if $(findstring s390x,$(ARCH)),gnu,musl)
RUST_TARGET := $(ARCH)-unknown-linux-$(LIBC)

ifneq ($(HOST_ARCH),$(ARCH))
Expand Down

0 comments on commit 0246800

Please sign in to comment.