mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 22:40:05 +00:00
30639e79d3
librt.so is no longer installed for PTHREAD_IN_LIBC, and tests are not linked against it. $(librt) is introduced globally for shared tests that need to be linked for both PTHREAD_IN_LIBC and !PTHREAD_IN_LIBC. GLIBC_PRIVATE symbols that were needed during the transition are removed again. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
17 lines
486 B
Plaintext
17 lines
486 B
Plaintext
# Makeconfig fragment for Hurd libpthread add-on.
|
|
# This gets included at the end of the main glibc Makeconfig.
|
|
|
|
have-thread-library = yes
|
|
|
|
shared-thread-library = $(common-objpfx)htl/libpthread.so
|
|
static-thread-library = $(..)htl/libpthread_syms.a $(common-objpfx)htl/libpthread.a
|
|
bounded-thread-library = $(static-thread-library)
|
|
|
|
ifeq (yes,$(build-shared))
|
|
librt = $(common-objpfx)rt/librt.so
|
|
else
|
|
librt = $(common-objpfx)rt/librt.a $(static-thread-library)
|
|
endif
|
|
|
|
rpath-dirs += htl
|