vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, we have a shared library built on HP-UX 11.0. I am using that with my application built on 11i. When running the applciation, the dld.sl is failing to resolve the symbol __nw__FUl from the shared library. My question is would the shared library work as it is from 11.0 on 11i. The problem is i dont have the source code to rebuild on 11i. Thanks for any info on this. Regards, Roopak |
| |||
| > we have a shared library built on HP-UX 11.0. I am using that with > my application built on 11i. When running the applciation, the dld.sl is > failing to resolve the symbol __nw__FUl from the shared library. if you have an application x that runs on 11.0 using this shared library, use the ldd command as "ldd -y x | grep __nw__FUl" to see which shared library this symbol was resolved from. then check on the 11i machine if that library defines that symbol. (you can use the command "ldd x" to find out which path that library is being loaded from) thats how you can do it in general. i just found that the symbol is defined in /usr/lib/libCsup.2 . you should probably get the latest version/patch of the c++ runtime libraries. > My question is would the shared library work as it is from 11.0 on > 11i. The problem is i dont have the source code to rebuild on 11i. i think it should work most of the time, but i guess its not guaranteed. |
| |||
| Hi , Sometimes it's due to a missing patch , Try to update the patches , this shared library works as well as 11.0 & 11.i Good luck , LeoSteph "Roopak" <roopakk@hotmail.com> wrote in message news:22b1333a.0310302104.5a5fb4ec@posting.google.c om... > Hi, > we have a shared library built on HP-UX 11.0. I am using that with > my application built on 11i. > When running the applciation, the dld.sl is failing to resolve the > symbol > __nw__FUl from the shared library. > > My question is would the shared library work as it is from 11.0 on > 11i. > The problem is i dont have the source code to rebuild on 11i. > > Thanks for any info on this. > > Regards, > Roopak |
| |||
| Hi, managed to figure it out that, the shared library was built using HP C++ compliler ( odump -compunit <.sl> ), and i was building the application with aCC. As per the documentation binaries from these two are incomaptible. Now I am gonna try with HP C++ compiler ( CC ) for 11i. Thanx, Roopak "d2r2^2" <d2r4@libertysurf.fr> wrote in message news:<3fa6b2f6$0$27032$626a54ce@news.free.fr>... > Hi , > > > Sometimes it's due to a missing patch , > Try to update the patches , this shared library works as well as 11.0 & 11.i > > Good luck , > > LeoSteph |