mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 21:40:12 +00:00
3dbbd2ff92
On GNU/Hurd we not only need $(common-objpfx) in LD_LIBRARY_PATH when loading dynamic objects, but also $(common-objpfx)/mach and $(common-objpfx)/hurd. This adds an ld-library-path variable to be used as LD_LIBRARY_PATH basis in Makefiles, and a sysdep-ld-library-path variable for sysdeps to add some more paths, here mach/ and hurd/.
10 lines
376 B
Plaintext
10 lines
376 B
Plaintext
# We need special startup code for statically linked binaries.
|
|
# See Makefile in this directory for the rule that builds this.
|
|
# We must define this variable earlier than sysdeps Makefiles are included.
|
|
static-start-installed-name = crt0.o
|
|
|
|
# GNU libc on the Hurd is always reentrant.
|
|
libc-reentrant = yes
|
|
|
|
sysdep-ld-library-path = $(common-objpfx)/mach:$(common-objpfx)/hurd
|