ELF format shared library?


 
Thread Tools Search this Thread
Top Forums Programming ELF format shared library?
# 1  
Old 11-01-2007
ELF format shared library?

HP Unix v 11. I have a shared library that I think I need to make ELF compatible because when I link it with my main pgm and a vendor's library I get this error:
ld: Mismatched ABI (not an ELF file)
I can't find any info on how solve this. Is this a linkedit option or something to my c program I need to modify or a cc option???
Thanks. Matt
# 2  
Old 11-01-2007
You say HPUX 11, but running on what?

There are basically five different runtimes, as follows....

CPU width Packaging
PA-RISC1.1, 32 bit mode, SOM
PA-RISC2.0, 32 bit mode, SOM
PA-RISC2.0, 64 bit mode, ELF
Itanium-2, 32 bit mode, ELF
Itanium-2, 64 bit mode, ELF

The immediate giveaway is if the library is of the form

"lib*.so[.major[.minor]]"

then it's ELF, if it's

"lib*.sl" or "lib*.major[.minor]"

then it's PA-RISC, if it's 32 bit then it's SOM.

You can only link like with like.

Last edited by porter; 11-14-2007 at 05:56 PM..
# 3  
Old 11-02-2007
Thanks, Now how to create an ELF shared library?

Porter:
Thanks for the the info. I can't answer the hardware question, but I'll find out if it makes a difference for my problem.
I have to link in a vendor's library, which is ELF format, with one of our own shared library which is not. Understand all libs then have to be ELF. So, how do I get my shared library to be in ELF format?
Thanks, Matt
# 4  
Old 11-02-2007
Post the results of

Code:
uname -a

Which compiler are you using?
# 5  
Old 11-05-2007
uname -a
HP-UX ga001hds B.11.11 U 9000/800 1882221739 unlimited-user license

c compiler
cc: HP-UX c compiler
# 6  
Old 11-05-2007
This is a PA-RISC platform and should be using SOM for 32 bit or ELF for 64 bit. Are you building a 32bit or 64 bit application?

What is the library compiled for?

Do "elfdump" on the library to determine the format of it and post the results.

Last edited by porter; 11-14-2007 at 05:56 PM..
# 7  
Old 11-09-2007
What elfdump option?

What elfdump option?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies

2. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies

3. Solaris

Wrong ELF data format: ELFDATA2MSB at /usr/perl5/5.8.4/lib/i86pc-solaris-64int/DynaLoader.pm

We are trying to install our project on solaris 10 x86 machine. we are getting the following error. Can't load '/u01/apps/WatchMark/FlexPM//R39FOA1/sw/perl/lib/auto/DBI/DBI.so' for module DBI: ld.so.1: perl: fatal: /u01/apps/WatchMark/FlexPM//R39FOA1/sw/perl/lib/auto/DBI/DBI.so: wrong ELF data... (3 Replies)
Discussion started by: Jagandadi
3 Replies

4. Programming

Makefile shared library g++

I'm having trouble with my makefile, I'm trying to code a shared library to be used by another program *EDIT* Found the solution: CC = g++ MODULES= readconfig.o ReadConfigLib.o OBJECTS= RCLOBJECTS= ReadConfigLib.cpp readconfig.cpp configDefinitions.h readconfig.h ReadConfigLib.h... (0 Replies)
Discussion started by: james2432
0 Replies

5. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

6. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

7. Programming

Using funcion in a shared library

Is there any way in C to access a function in C shared library. I have used dlopen to access /load the c shared library but unable to use the function in the shared object. Thanks in advance :b: (1 Reply)
Discussion started by: yhacks
1 Replies

8. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

9. UNIX for Advanced & Expert Users

shared library

What is the primary difference between static library and dynamic library? and how to write static shared library? (1 Reply)
Discussion started by: areef4u
1 Replies

10. Programming

Shared Library

hello all I want to work in shared libraries how can i work in Linux Environment ? (2 Replies)
Discussion started by: rajashekaran
2 Replies
Login or Register to Ask a Question