From 7e2b0c8562b35155820f87b5ff02a8b6850344cc Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 19 Apr 2010 15:31:43 -0700 Subject: Link as-needed against ld.so. --- Makeconfig | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Makeconfig') diff --git a/Makeconfig b/Makeconfig index cd77fe16b8..c5a58f2abf 100644 --- a/Makeconfig +++ b/Makeconfig @@ -387,6 +387,14 @@ ifeq ($(elf),yes) have-initfini = yes endif +ifeq ($(have-as-needed),yes) +as-needed := -Wl,--as-needed +no-as-needed := -Wl,--no-as-needed +else +as-needed := +no-as-needed := +endif + # Installed name of the startup code. ifneq ($(have-initfini),yes) # When not having init/fini, there is just one startfile, called crt0.o. @@ -484,7 +492,8 @@ ifeq ($(elf),yes) # run the linked programs. link-libc = -Wl,-rpath-link=$(rpath-link) \ $(common-objpfx)libc.so$(libc.so-version) \ - $(common-objpfx)$(patsubst %,$(libtype.oS),c) $(gnulib) + $(common-objpfx)$(patsubst %,$(libtype.oS),c) \ + $(as-needed) $(common-objpfx)elf/ld.so $(no-as-needed) $(gnulib) # This is how to find at build-time things that will be installed there. rpath-dirs = math elf dlfcn nss nis rt resolv crypt endif -- cgit 1.4.1