|
From: Andreas W. <and...@em...> - 2004-04-21 08:46:50
|
Prashant,
to verify, which additional libraries a shared library or an executable depend on, you may issue the command "ldd" on it.
So "ldd wrapper" gives me on a SuSE Linux Enterprise 8 (I have no RedHat here):
libc.so.6 => /lib/i686/libc.so.6 (0x40022000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
For libwrapper.so I get:
statically linked
(Leif: was the static linking for the JNI library intentional?)
The binaries are not linked with explicit library dependency, so the GNU linker decides which libraries to link in my default (libc.so in this case; ld-linux.so is linked in by libc.so and is no direct dependency).
ldd will also show you if there are missing dependencies.
Hope it helps,
Andreas
>
> I am trying to get Wrapper(3.0.5) work on Red Hat Linux Adv Server.
>
> 1.What version of glibc is required to get the shipped libraries running.
> - This may be stupid but Is libc the only dependency?
>
> Thanks
> Prashant
>
> Andreas Wendt wrote:
>
> > Leif,
> >
> > when running the testwrapper, clicking on the "System.out deadlock"
> > button causes the JVM to hang without the wrapper recognizing it (at
> > least on MacOSX, OSF1, and Irix).
> > What should really happen?
> > And what is the purpose of this test? It is not explained in the manual.
> >
> > Cheers,
> > Andreas
> >
> >
> >
> > -------------------------------------------------------
> > This SF.Net email is sponsored by: IBM Linux Tutorials
> > Free Linux tutorial presented by Daniel Robbins, President and CEO of
> > GenToo technologies. Learn everything from fundamentals to system
> > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
> > _______________________________________________
> > Wrapper-user mailing list
> > Wra...@li...
> > https://lists.sourceforge.net/lists/listinfo/wrapper-user
> >
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by: IBM Linux Tutorials
> Free Linux tutorial presented by Daniel Robbins, President and CEO of
> GenToo technologies. Learn everything from fundamentals to system
> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
> _______________________________________________
> Wrapper-user mailing list
> Wra...@li...
> https://lists.sourceforge.net/lists/listinfo/wrapper-user
|