![]() |
|
|
|
|
|||||||
| 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 |
| Bus error(coredump) while running SQL*Loader in HP Unix 11 | srinivas_paluku | UNIX for Advanced & Expert Users | 3 | 04-23-2007 12:53 AM |
| error running COBOL - ".loader does not exist" | jbrubaker | UNIX for Dummies Questions & Answers | 16 | 08-02-2006 09:21 AM |
| compile error while using dlopen | shriashishpatil | High Level Programming | 5 | 06-29-2006 12:01 AM |
| dlopen failed! | virmin | High Level Programming | 1 | 10-30-2005 08:19 PM |
| SQL loader error | sveera | Shell Programming and Scripting | 4 | 04-19-2005 01:04 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
when i try to run an executable i got the following error message:
resolve_symbols: loader error: dlopen: what does this error mean and what should be done to avoid this? with regards |
| Forum Sponsor | ||
|
|
|
|||
|
dlopen opens shared libraries and maps them to memory.
Usually this error happens when dlopen can't find a shared library. You will need to see what libraries dlopen expects to find: Code:
ldd myexecutablefile If those libraries aren't where ldd says they are, you add the path for the missing libraries to (depending on you flavor of unix) SHLIB_PATH or LD_LIBRARY_PATH. If the libraries are not anywhere on the system, then you have to install them. |
|||
| Google The UNIX and Linux Forums |