- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Mismatched ABI (not an ELF file)
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
09-17-2009 05:19 AM
09-17-2009 05:19 AM
Mismatched ABI (not an ELF file)
What does this mean on HP Itanium. Are we really comping in 32 bit mode or not?
Can you please let us know?
- Tags:
- ABI mismatch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 05:21 AM
09-17-2009 05:21 AM
Re: Mismatched ABI (not an ELF file)
-g0 -AP -v +z +Z +DD32
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 05:33 AM
09-17-2009 05:33 AM
Re: Mismatched ABI (not an ELF file)
The error is from the linker. You can't mix 32-bit and 64-bit objects when you link. The first object's "bitness" sets the requirement for the remaining ones.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 05:35 AM
09-17-2009 05:35 AM
Re: Mismatched ABI (not an ELF file)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 08:13 PM
09-17-2009 08:13 PM
Re: Mismatched ABI (not an ELF file)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 08:22 PM
09-17-2009 08:22 PM
Re: Mismatched ABI (not an ELF file)
secondly, it also says that file is not an ELF file. usually on itanium, shared library extension is .so and not .sl. .sl is on PA-RISC. so in your case, it looks like you are giving a 32 bit PA file (SOM format) later in the link line.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 08:48 PM
09-17-2009 08:48 PM
Re: Mismatched ABI (not an ELF file)
Current libEAClnt.sl must be a shared library for PA.
You can confirm it by invoking "file /opt/EA2000_3.5.1.4/lib/libEAClnt.sl".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2009 09:19 PM
09-17-2009 09:19 PM
Re: Mismatched ABI (not an ELF file)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2009 01:01 AM
09-18-2009 01:01 AM
Re: Mismatched ABI (not an ELF file)
You should use the same options for linking.
Note this error on Integrity means you are mixing SOM and ELF files, as Suprateeka said.
But on PA, this also means the bitness is different.
>JRF: The first object's "bitness" sets the requirement for the remaining ones.
You shouldn't depend on this. You should be explicit when using the driver.
Unless you are always using the default 32 bit mode.