Hi again. I decided to include too the explanation of Joe Mario:
oni:
All of the debug or error messages from the loader that print the
message "Cannot map library" also include the library name.
The calls are all of the form:
error("Cannot map library %s", libname);
It looks like you might have a corrupt library where the string
containing the name is NULL. That's just a guess.
One thought is to set the following environment variable to see
if the loader debug information can help you isolate your problem.
Here's the csh syntax:
setenv _RLD_ARGS "-debug map -log /tmp/temp.log"
Set that variable just before you run your app. Run your app, then
look into the /tmp/temp.log file to see if there is any more information
about the failure.
Received on Fri Jul 04 2003 - 07:31:48 NZST