From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
libc: expose it as musl This patch exposes the libc implementation which is greatly a subset of musl as such so that binaries built for musl-based Linux distributions like alpine do not complain about its absence. References #1070. Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/core/elf.cc b/core/elf.cc --- a/core/elf.cc +++ b/core/elf.cc @@ -1218,6 +1218,7 @@ program::program(void* addr) "libm.so.6", #ifdef __x86_64__ "ld-linux-x86-64.so.2", + "libc.musl-x86_64.so.1", // As noted in issue #1040 Boost version 1.69.0 and above is // compiled with hidden visibility, so even if the kernel uses // this library, it will not be visible for the application and -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/0000000000007030c8059bc19089%40google.com.
