vote up 1 vote down star

Hi All

And thanks in advance.

operating system: AIX 5.3. compiler: xlC_r

build system is: "Unix Makefiles"

our application uses several static (.a) libs and several shared (.so) libs. the build process pass successfully (we do get some duplicate symbol warnings). but when we try to execute we are getting symbol missing errors.

Note: we are not using dl to load shared libs at runtime.

Are we missing something ?

How come we pass the linking stage and still miss symbols ?

flag
There are several likely causes and they are all complicated to explain. Please provide more details: which symbols are missing, and where are they defined at (static) link time. Command line you use to link may also help. – Employed Russian Nov 7 at 19:26
Also remember AIX has different meanings for .a and .so compared to other Unix/Linux. – Douglas Leeder Nov 13 at 17:43

2 Answers

vote up 2 vote down

Dynamic symbols get checked on linking time, so if you're missing something on execution, then any of the dynamic libs or their dependencies may not be in the proper path.

link|flag
vote up 0 vote down

The shared libs may depend on other sharedlibs that they can't find at runtime.

Make sure your environment is set up correctly so that dlopen() knows where to look for othere shared libs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.