From: Simon Rowe Date: Tue, 3 Dec 2019 13:59:47 +0000 (+0000) Subject: package/tini: compile executable static X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4732222e4c863e324771f8be2391764641ceba2;p=buildroot.git package/tini: compile executable static One usecase for tini is as the init process for a container which has a single executable and no C runtime library. It therefore needs to be independent of any C runtime library within the container. Previously, we didn't build statically to avoid problems with BR2_SHARED_LIBS=y. However, it turns out that tini can successfully link statically even with glibc and BR2_SHARED_LIBS=y, because libc.a is still included in staging, and tini doesn't use any NSS functionality. Signed-off-by: Simon Rowe Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- diff --git a/package/tini/tini.mk b/package/tini/tini.mk index 5dd98777f9..986e612a83 100644 --- a/package/tini/tini.mk +++ b/package/tini/tini.mk @@ -10,6 +10,7 @@ TINI_LICENSE = MIT TINI_LICENSE_FILES = LICENSE TINI_CFLAGS = $(TARGET_CFLAGS) \ + -static \ -DTINI_VERSION=\"$(TINI_VERSION)\" \ -DTINI_GIT=\"\"