![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| sqlload not found error | abhi_123 | UNIX for Dummies Questions & Answers | 2 | 06-02-2008 05:54 AM |
| ld: fatal: library -ltli: not found | vaibhav276 | SUN Solaris | 0 | 05-05-2008 11:16 PM |
| ftp error 550 folder not found | lnarayana | UNIX for Dummies Questions & Answers | 1 | 03-17-2008 02:18 PM |
| shared library not found | JCR | High Level Programming | 12 | 12-28-2007 09:03 PM |
| not found error | gander_ss | Shell Programming and Scripting | 4 | 05-11-2007 01:24 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
library not found error
We are trying to execute C/C++ programs in SOlaris 8. Though the exes are compiled in g++, we donot have it installed in the target machine. We have the library files in the target machine and LD_LIBRARY_PATH is set correctly. Now when the exes are run, we are getting the error
$ seq ld.so.1: seq: fatal: libstdc++.so.5: open failed: No such file or directory Killed Is it not possible to run exes compiled in g++ by providing the runtime libraries like this? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
The target machine is missing libstdc++.so.5. A more remote possibility: the file is not in LD_LIBRARY_PATH.
Run ldd on the file and look to see where it is trying to find the library file. That's where the exe will look for it. |
|||
| Google The UNIX and Linux Forums |