diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-07-27 01:31:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-07-27 01:31:43 +0000 |
commit | 6de1f625881347df9380a57bc2e4ff8984ba7533 (patch) | |
tree | 01d410c9e2f41c11b0b59421936fe38f27322e35 /dlfcn/Makefile | |
parent | 3a975ff5762e4c4368f20f7b7e2ed0982ee9332a (diff) | |
download | glibc-6de1f625881347df9380a57bc2e4ff8984ba7533.tar glibc-6de1f625881347df9380a57bc2e4ff8984ba7533.tar.gz glibc-6de1f625881347df9380a57bc2e4ff8984ba7533.tar.bz2 glibc-6de1f625881347df9380a57bc2e4ff8984ba7533.zip |
* dlfcn/Makefile: Add rules to build and run bug-atexit3.
* dlfcn/bug-atexit3.c: New file.
* dlfcn/bug-atexit3-lib.cc: New file.
Diffstat (limited to 'dlfcn/Makefile')
-rw-r--r-- | dlfcn/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/dlfcn/Makefile b/dlfcn/Makefile index bfa181528b..f2ef2f72a3 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995-2002, 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 1995-2002, 2003, 2004, 2005, 2006 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 @@ -40,7 +40,8 @@ endif ifeq (yes,$(build-shared)) tests = glrefmain failtest tst-dladdr default errmsg1 tstcxaatexit \ - bug-dlopen1 bug-dlsym1 tst-dlinfo bug-atexit1 bug-atexit2 + bug-dlopen1 bug-dlsym1 tst-dlinfo bug-atexit1 bug-atexit2 \ + bug-atexit3 ifeq (yes,$(have-protected)) tests += tstatexit endif @@ -48,7 +49,7 @@ endif modules-names = glreflib1 glreflib2 failtestmod defaultmod1 defaultmod2 \ errmsg1mod modatexit modcxaatexit \ bug-dlsym1-lib1 bug-dlsym1-lib2 bug-atexit1-lib \ - bug-atexit2-lib + bug-atexit2-lib bug-atexit3-lib failtestmod.so-no-z-defs = yes glreflib2.so-no-z-defs = yes @@ -135,6 +136,12 @@ $(objpfx)bug-atexit2.out: $(objpfx)bug-atexit2-lib.so $(objpfx)bug-atexit2-lib.so: $(common-objpfx)libc.so \ $(common-objpfx)libc_nonshared.a +LDFLAGS-bug-atexit3-lib.so = -lstdc++ +$(objpfx)bug-atexit3: $(libdl) +$(objpfx)bug-atexit3.out: $(objpfx)bug-atexit3-lib.so +$(objpfx)bug-atexit3-lib.so: $(common-objpfx)libc.so \ + $(common-objpfx)libc_nonshared.a + # Depend on libc.so so a DT_NEEDED is generated in the shared objects. # This ensures they will load libc.so for needed symbols if loaded by |