- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- DBD-Oracle error trying to install
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
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
07-21-2011 07:12 AM
07-21-2011 07:12 AM
I am running HP-UX 11.31, with perl version:
This is perl, v5.8.8 built for IA64.ARCHREV_0-thread-multi
When I run the make command I am receiving the following error:
ld: Mismatched ABI for -lclntsh, found /opt/oracle/product/11g/lib/libclntsh.so
Fatal error.
*** Error exit code 1
Can anyone help with resolving this issue ?
Solved! Go to Solution.
- Tags:
- ABI mismatch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2011 04:14 AM
07-22-2011 04:14 AM
Solution>ld: Mismatched ABI for -lclntsh, found /opt/oracle/product/11g/lib/libclntsh.so
What does this show: file /opt/oracle/product/11g/lib/libclntsh.so
The error indicates you have a mismatch between your executable and your shlib. One is +DD32 and the other is +DD64. You need to add a -L path to point to the correct shlib path.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2011 05:24 AM
07-22-2011 05:24 AM
Re: DBD-Oracle error trying to install
Thanks, I totally missed it, but when I checked the /opt/perl it was being linked to the 32bit version: /opt/perl_32
Changed the link to /opt/perl_64 and it worked....
Thanks