Re: iperf error
> >Date: Fri, 13 Jun 2003 11:19:47 -0400
> >From: Denish Lakhan <dlakhan --at-- lucent.com>
> >To: dast --at-- nlanr.net
> >Subject: iperf error
> >
> >Hi,
> >
> >I tried executing iperf on solaris 8 and I keep getting the following
> error -->>
> >
> >
> >ld.so.1:iperf : fatal: libstdc++.so.5: open failed: No such file or directory
> >Killed
> >
It seems as though the runtime linker can not find the C++ STD libraries.
So its probably looking for libstdc++.so.5 in /usr/local/lib. Which you
should verify if it is indeed not there. (Check for any libstdc++, it
might need a symlink). Also check if its in /usr/lib.
If it is there.. then you need to set your runtime library path. I think
you can do this with the -R option when you compile (you would need to
compile Iperf yourself) or I read something about setting a
LD_LIBRARY_PATH environment variable. Or there is a command called crle
(http://supportforum.sun.com/freesolaris/techfaqs.html?techfaqs_3057). I'm
not really a Solaris guru.. so you might need to look into this.
If you really do not have libstdc++ then you probably do not have gcc
either. I do not think it comes with Solaris 8. Check out:
http://www.sunfreeware.com/programlistsparc8.html to get them. You might
still need to compile Iperf yourself though and set the runtime library
path.
Let me know if you have questions or if any of these fixes worked for you.
-Tanya