diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-02-16 21:35:21 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-02-16 21:35:21 +0000 |
commit | 9da4b6afffd849f85c4892a2016c899358db99af (patch) | |
tree | ba19b50b6e9bf22755a042d22cbacb4d68c45b41 /test/dlopen/Makefile | |
parent | 138adeccbd94db291a2c2010a941e70cba294a2a (diff) |
make sure static variables are re-initialized everytime
Diffstat (limited to 'test/dlopen/Makefile')
-rw-r--r-- | test/dlopen/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/test/dlopen/Makefile b/test/dlopen/Makefile index 8c6032238..defe764ed 100644 --- a/test/dlopen/Makefile +++ b/test/dlopen/Makefile @@ -4,24 +4,26 @@ # rules need a little love to work with glibc ... export UCLIBC_ONLY := 1 -TESTS := dltest dltest2 test1 test2 test3 +TESTS := dltest dltest2 dlstatic test1 test2 test3 include ../Test.mak -CFLAGS_dltest := -DLIBNAME="\"./libtest.so\"" -CFLAGS_dltest2 := -DLIBNAME="\"./libtest3.so\"" +CFLAGS_dltest := -DLIBNAME="\"./libtest.so\"" +CFLAGS_dltest2 := -DLIBNAME="\"./libtest3.so\"" -LDFLAGS_dltest := -ldl -lpthread -LDFLAGS_dltest2 := -ldl -lpthread -LDFLAGS_test1 := -ldl -LDFLAGS_test2 := -ldl -LDFLAGS_test3 := -ldl ./libtest1.so ./libtest2.so -Wl,-rpath,. +LDFLAGS_dlstatic := -ldl +LDFLAGS_dltest := -ldl -lpthread +LDFLAGS_dltest2 := -ldl -lpthread +LDFLAGS_test1 := -ldl +LDFLAGS_test2 := -ldl +LDFLAGS_test3 := -ldl ./libtest1.so ./libtest2.so -Wl,-rpath,. DEBUG_LIBS := X WRAPPER := env $(DEBUG_LIBS)=all LD_LIBRARY_PATH="$$PWD:.:$(LD_LIBRARY_PATH)" dltest: libtest.so dltest2: libtest3.so +dlstatic: libstatic.so test1: libtest1.so test2: libtest1.so libtest2.so test3: libtest1.so libtest2.so |