From 57ddfad884a0c490e462b78634f2582e6b07dc9a Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Wed, 7 Feb 2024 00:46:38 +0000 Subject: [PATCH] lib/libc: version auxiliary libsys.so We need to use libsys.so.7 so that we can work without /usr and because we're bound a specific ABI. Reported by: jtrc27, kib Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D43772 --- lib/libc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/Makefile b/lib/libc/Makefile index 7c728ffe6443..41cf0f6de72a 100644 --- a/lib/libc/Makefile +++ b/lib/libc/Makefile @@ -64,7 +64,7 @@ LDFLAGS+= -nodefaultlibs LIBADD+= compiler_rt LIBADD+= sys -LDFLAGS+=-Wl,--auxiliary,libsys.so +LDFLAGS+=-Wl,--auxiliary,libsys.so.7 .if ${MK_SSP} != "no" && \ (${LIBC_ARCH} == "i386" || ${LIBC_ARCH:Mpowerpc*} != "")