This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Please try this testcase on Solaris.
- From: martin at v dot loewis dot de (Martin v. Loewis)
- To: "H . J . Lu" <hjl at lucon dot org>
- Cc: David Abrahams <david dot abrahams at rcn dot com>, GNU C Library <libc-alpha at sources dot redhat dot com>, gcc at gcc dot gnu dot org
- Date: 19 May 2002 20:59:31 +0200
- Subject: Re: Please try this testcase on Solaris.
- References: <20020519075448.A21491@lucon.org>
"H . J . Lu" <hjl@lucon.org> writes:
> Could someone please send me the output on Solaris?
On Solaris, I get
./main global lazy
dlopen flags: RTLD_GLOBAL | RTLD_LAZY:
module1.so: 1
module2.so: 1
./main global now
dlopen flags: RTLD_GLOBAL | RTLD_NOW:
module1.so: 1
module2.so: 1
./main local lazy
dlopen flags: RTLD_LOCAL | RTLD_LAZY:
module1.so: 1
module2.so: 0
./main local now
dlopen flags: RTLD_LOCAL | RTLD_NOW:
module1.so: 1
module2.so: 0
So it looks identical.
Regards,
Martin