diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-04-04 20:09:09 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2012-04-11 00:13:52 +0530 |
commit | 73d65cc3784b1413b017fed31550ec11e717e45b (patch) | |
tree | 25c26d43b59d5f65bd15381a05a7566cb5ee90b7 /elf/Makefile | |
parent | d715c9144bdf32211cd512530d2240dc28648435 (diff) | |
download | glibc-73d65cc3784b1413b017fed31550ec11e717e45b.tar glibc-73d65cc3784b1413b017fed31550ec11e717e45b.tar.gz glibc-73d65cc3784b1413b017fed31550ec11e717e45b.tar.bz2 glibc-73d65cc3784b1413b017fed31550ec11e717e45b.zip |
New ld.so argument --inhibit-ldcache to disable ld.so.cache lookup
It may sometimes be desirable to make the dynamic linker only pick up
libraries from the library path and rpath and not look at the
ld.so.cache that ldconfig generates. An example of such a use case is
the glibc testsuite where the dynamic linker must not be influenced by
any external paths or caches.
This change adds a new option --inhibit-ldcache that when used, tells
the dynamic linker to not use ld.so.cache even if it is available.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 59a3936a1b..a77e792cb4 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2011, 2012 Free Software Foundation, Inc. +# Copyright (C) 1995-2012 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -419,6 +419,7 @@ CFLAGS-ldconfig.c = $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' \ -D'SLIBDIR="$(slibdir)"' -DIS_IN_ldconfig=1 CFLAGS-dl-cache.c = $(SYSCONF-FLAGS) CFLAGS-cache.c = $(SYSCONF-FLAGS) +CFLAGS-rtld.c = $(SYSCONF-FLAGS) CPPFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),-DNOT_IN_libc=1 -DIS_IN_rtld=1) |