From: Samuel Thibault Date: Tue, 4 Jan 2022 10:34:29 +0000 (+0000) Subject: elf: Fix tst-linkall-static link when pthread is not in libc X-Git-Tag: glibc-2.35~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ac2bee49540b87e6e1c309e23ea170b0fa6e5df;p=thirdparty%2Fglibc.git elf: Fix tst-linkall-static link when pthread is not in libc In that case we want to link in libanl.a, thus providing getaddrinfo_a. --- diff --git a/elf/Makefile b/elf/Makefile index b23b8dfd51d..d6b33fea1ed 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1936,6 +1936,10 @@ $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig # Test static linking of all the libraries we can possibly link # together. Note that in some configurations this may be less than the # complete list of libraries we build but we try to maxmimize this list. +ifeq ($(pthread-in-libc),no) +$(objpfx)tst-linkall-static: \ + $(common-objpfx)resolv/libanl.a +endif $(objpfx)tst-linkall-static: \ $(common-objpfx)math/libm.a \ $(common-objpfx)resolv/libresolv.a \