mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
Update.
* elf/Makefile (tests): Add filter. Add rules to generate filter. * elf/filter.c: New file. * elf/filtmod1.c: New file. * elf/filtmod2.c: New file.
This commit is contained in:
parent
f53c03c20d
commit
fcacb36a0c
@ -1,5 +1,10 @@
|
||||
2000-07-20 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/Makefile (tests): Add filter. Add rules to generate filter.
|
||||
* elf/filter.c: New file.
|
||||
* elf/filtmod1.c: New file.
|
||||
* elf/filtmod2.c: New file.
|
||||
|
||||
* elf/rtld.c: Define _dl_bind_not variable.
|
||||
(process_envvars): Recognize LD_BIND_NOT and set _dl_bind_not.
|
||||
* elf/dl-support.c: Likewise.
|
||||
|
@ -85,7 +85,7 @@ endif
|
||||
|
||||
ifeq (yes,$(build-shared))
|
||||
tests = loadtest restest1 preloadtest loadfail multiload origtest resolvfail \
|
||||
constload1 order $(tests-vis-$(have-protected)) noload \
|
||||
constload1 order $(tests-vis-$(have-protected)) noload filter \
|
||||
$(tests-nodelete-$(have-z-nodelete)) \
|
||||
$(tests-nodlopen-$(have-z-nodlopen))
|
||||
tests-vis-yes = vismain
|
||||
@ -96,7 +96,7 @@ modules-names = testobj1 testobj2 testobj3 testobj4 testobj5 testobj6 \
|
||||
testobj1_1 failobj constload2 constload3 \
|
||||
dep1 dep2 dep3 dep4 $(modules-vis-$(have-protected)) \
|
||||
$(modules-nodelete-$(have-z-nodelete)) \
|
||||
$(modules-nodlopen-$(have-z-nodlopen))
|
||||
$(modules-nodlopen-$(have-z-nodlopen)) filtmod1 filtmod2
|
||||
modules-vis-yes = vismod1 vismod2 vismod3
|
||||
modules-nodelete-yes = nodelmod1 nodelmod2 nodelmod3 nodelmod4
|
||||
modules-nodlopen-yes = nodlopenmod
|
||||
@ -243,6 +243,7 @@ $(objpfx)dep1.so: $(objpfx)dep2.so $(objpfx)dep4.so
|
||||
$(objpfx)dep2.so: $(objpfx)dep3.so $(objpfx)dep4.so
|
||||
$(objpfx)dep4.so: $(objpfx)dep3.so
|
||||
$(objpfx)nodelmod3.so: $(objpfx)nodelmod4.so
|
||||
$(objpfx)filtmod1.so: $(objpfx)filtmod2.so
|
||||
|
||||
$(test-modules): $(objpfx)%.so: $(objpfx)%.os
|
||||
$(build-module)
|
||||
@ -313,3 +314,6 @@ $(objpfx)nodelete.out: $(objpfx)nodelmod1.so $(objpfx)nodelmod2.so \
|
||||
LDFLAGS-nodlopenmod.so = -Wl,--enable-new-dtags,-z,nodlopen
|
||||
$(objpfx)nodlopen: $(libdl)
|
||||
$(objpfx)nodlopen.out: $(objpfx)nodlopenmod.so
|
||||
|
||||
LDFLAGS-filtmod1.so = -Wl,-F,$(objpfx)filtmod2.so
|
||||
$(objpfx)filter: $(objpfx)filtmod1.so
|
||||
|
14
elf/filter.c
Normal file
14
elf/filter.c
Normal file
@ -0,0 +1,14 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
extern const char *foo (void);
|
||||
|
||||
int
|
||||
main (void)
|
||||
{
|
||||
const char *s = foo ();
|
||||
|
||||
printf ("called `foo' from `%s'\n", s);
|
||||
|
||||
return strcmp (s, "filtmod2.c");
|
||||
}
|
5
elf/filtmod1.c
Normal file
5
elf/filtmod1.c
Normal file
@ -0,0 +1,5 @@
|
||||
const char *
|
||||
foo (void)
|
||||
{
|
||||
return __FILE__;
|
||||
}
|
5
elf/filtmod2.c
Normal file
5
elf/filtmod2.c
Normal file
@ -0,0 +1,5 @@
|
||||
const char *
|
||||
foo (void)
|
||||
{
|
||||
return __FILE__;
|
||||
}
|
Loading…
Reference in New Issue
Block a user