1836645 Members
1781 Online
110102 Solutions
New Discussion

Re: Problem about dld.sl

 
SOLVED
Go to solution
zonfeng
Occasional Advisor

Problem about dld.sl

I run a program and meet the below error:
error after run it in hp-ux11

/usr/lib/dld.sl: Unresolved symbol: xdr_char (plabel) from /opt/tuxedo/lib/libwsc.sl
/usr/lib/dld.sl: Unresolved module for symbol: _tux__tm_itypes_init (code) from /opt/tuxedo/lib/libwsc.sl

please help me.
9 REPLIES 9
twang
Honored Contributor

Re: Problem about dld.sl

Did you run the program successfully before on this system?
Looks like you are missing some library files as per the above error messages.
Try to run following command and take a look at the output file:
# nm /usr/lib/lib* > /var/tmp/symlist

Umapathy S
Honored Contributor
Solution

Re: Problem about dld.sl

zonfeng,
You are missing the implementation of xdr_char() which would be in some library. Install that library if its not there, otherwise check SHLIB_PATH for 32 bit or LD_LIBRARY_PATH for 64 bit. This should contain the path to the missing library.

HTH,
Umapathy

Arise Awake and Stop NOT till the goal is Reached!
zonfeng
Occasional Advisor

Re: Problem about dld.sl

 
Umapathy S
Honored Contributor

Re: Problem about dld.sl

zonfeng,
The xdr_* libraries are for the external data representation. They will be available in libc_r.sl or libnsl.sl. Double check these libraries. They should be automatically resolved by dld.sl.

Check your current patch level and the patch for dld.sl

HTH,
Umapathy

Arise Awake and Stop NOT till the goal is Reached!
zonfeng
Occasional Advisor

Re: Problem about dld.sl

Thanks for all ,now is OK, I install the patch and add some option when make the source, and everything is ok.
H.Merijn Brand (procura
Honored Contributor

Re: Problem about dld.sl

Then please assign points to the answers that helped you. No points for this one please.

To explain, I visited this link purely because there was no bunny yet, and I *might* have been helpful. Now if the issue is resolved, a bunny should appear with the message, and I would know not to read it.

Enjoy, have FUN! H.Merijn
Enjoy, Have FUN! H.Merijn
zonfeng
Occasional Advisor

Re: Problem about dld.sl

oh ,so sorry,I am a freshman in this form,and I came from China, thanks for all of yu.
Gabriel Sanchez_1
Occasional Contributor

Re: Problem about dld.sl

I have a similar problem. I am running on HP-UX 11.11. I am not sure from rthe replies here whhat patch resolved the problem.
rickynie
New Member

Re: Problem about dld.sl

I'm found same question,help me