Skip to content

Commit 3b64fce

Browse files
committed
libct/dmz: Disable nolibc temporarily
Signed-off-by: Rodrigo Campos <[email protected]>
1 parent bb658b1 commit 3b64fce

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

libcontainer/dmz/Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ include ../../cc_platform.mk
55
# https://go.dev/doc/install/source#environment (with GOOS=linux)
66
#
77
# See nolibc supported arches in ./nolibc/arch-*.h
8-
NOLIBC_GOARCHES := 386 amd64 arm arm64 loong64 ppc64le riscv64 s390x
8+
#
9+
# XXX: Temporarily commented out to disable it. It is not clear we want runc-dmz (see #4158) and if
10+
# we do, we will need to do something to print proper errors from exec (in _dmz.c) to the user as
11+
# nolibc does not support stderr() (see #4170).
12+
#
13+
#NOLIBC_GOARCHES := 386 amd64 arm arm64 loong64 ppc64le riscv64 s390x
14+
NOLIBC_GOARCHES :=
915

1016
ifneq (,$(filter $(GOARCH), $(NOLIBC_GOARCHES)))
1117
# We use the flags suggested in nolibc/nolibc.h, it makes the binary very small.

0 commit comments

Comments
 (0)