- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /usr/lib/hpux32/dld.so: Unsatisfied code symbol '_...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 01:49 AM
04-05-2006 01:49 AM
Hi all,
This is shashikala. I built Python on 11.23IA, the built was successful. while gmake tests iam getting above error.Please help to resolve this error.
Thanks ,
shashikala
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 04:10 PM
04-05-2006 04:10 PM
SolutionJust download a pre-built version from
HP-UX Porting and Archive Center:
http://hpux.connect.org.uk/hppd/cgi-bin/search?package=on&description=on&term=python
Hard answer:
The missing symbol is from gcc's
libgcc.a. I've seen this compilation
issue for several open source packages
and am not quite sure what causes
it. It's fixed if you explicitly include
libgcc.a on the link line. Try a
configure CC="gcc -static-libgcc" to
alternatively, configure LDFLAGS=-L
libgcc.a is in the gcc installation directory which
can vary depending on where you got gcc
from. The gcc that HP distributes
installs to /opt/hp-gcc and libgcc.a is
located in:
/opt/hp-gcc/lib/gcc/ia64-hp-hpux11.23/3.4.5/libgcc.a
(and that path obviously varies
depending on your UX version and gcc
version).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 04:55 PM
04-05-2006 04:55 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
The problem is that the .so files get linked without mentioning libgcc.a, and apparently this platform won't resolve the references to link to the same routines in the backend.
One simple work around is use the Makefile.shlib for build.
HTH,
Prabu.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 05:03 PM
04-05-2006 05:03 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
I hope you and Ambika are working in HP,India as part of Internet express team. You are trying to build variuos IE products in 11.11, 11.23 IA-64 and 11.23 PA. I am sure, you will face many issues while compiling, testing. You can always post issues here, but try to assign points to people who responded to your questions.
I have assigned points to 0 of 10 responses to my questions.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 05:11 PM
04-05-2006 05:11 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
It's nice to hear you people are working on Internet Express..:-).
The simple solution is, set your LDFLAGS pointing to the place where the static gcc library is present.
Or edit your make file, so that only static version of gcc is used.
HTH,
Prabu.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 05:15 PM
04-05-2006 05:15 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
of the other easy answer I
neglected. Assuming you are
not on the Internet Express team,
the other source for pre-built software
is Internet Express which is available
for Tru64 and HP-UX. The HP-UX
version is here:
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1123
and includes python 2.4.2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 09:08 PM
04-05-2006 09:08 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
Regarding to the problem,
Try to export LD_LIB_PATH (64 bit) or SHLIB_PATH (32 bit ) with the library location. It will solve the problem.
--
Muthu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 09:39 PM
04-05-2006 09:39 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
You need to export SHLIB_PATH=$SHLIB_PATH:/usr/local/lib/libgcc.a (or, it depends on where you have libgcc.a)
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 09:42 PM
04-05-2006 09:42 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
Thanks for your response. It's a great help for me.
My rating is 8.
Thanks and Regards,
shashikala
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 11:45 PM
04-05-2006 11:45 PM
Re: /usr/lib/hpux32/dld.so: Unsatisfied code symbol '__divdi3' in load module '/shashi/Python-2.4.2/buil
Assigning points is done in different way :-). That is whyen you, the author opens your post, for all replies you get, there is a compo box on the top right most, there you can click it to open and assign points.
HTH,
Prabu.S