[14814] in Athena Bugs
sgi 8.0I: cygnus
daemon@ATHENA.MIT.EDU (slehman@MIT.EDU)
Fri Nov 8 13:55:17 1996
From: slehman@MIT.EDU
To: bugs@MIT.EDU
Date: Fri, 08 Nov 1996 13:54:45 EST
System name: w20-575-105
Type and version: IP22 8.0I
Display type: GR3-XZ
What were you trying to do?
compile a C++ program using g++
(more specifically, /mit/cygnus/arch/sgi_53/bin/g++)
What's wrong:
It compiles without any compaints, but the binary produced will not
execute properly. The precise message is:
22864:a.out: rld: Fatal Error: cannot map soname 'libstdc++.so.2.8.0' using any of the filenames /usr/lib/libstdc++.so.2.8.0:/lib/libstdc++.so.2.8.0:/lib/cmplrs/cc/libstdc++.so.2.8.0:/usr/lib/cmplrs/cc/libstdc++.so.2.8.0: -- either the file does not exist or the file is not mappable (with reason indicated in previous msg)
What should have happened:
The program should have run, if there weren't too many bugs :)
Please describe any relevant documentation references:
I used the same method for compiling a program last spring (and I'm trying
to compile that same program again). If I instead use
/mit/gnu/arch/sgi_53/bin/g++ , the program seems to run fine.
Even this code won't execute properly using g++ in cygnus
#include <iostream.h>
main ()
{
cout << " hi there\n";
return 1;
}