vote up 10 vote down star
6

What should I do if I have two libraries that provide functions with equivalent names?

flag
are these static libraries or dynamically linked? – Alnitak Mar 24 at 16:54
Great first question... – Uri Mar 24 at 16:58
we need more details... are those names exported? or are they used internally only? Can you change the names? – Johannes Schaub - litb Mar 24 at 17:02
They are dynamically linked, both. I can't change the names, since I don't own the libraries. – qeek Mar 24 at 17:18

9 Answers

vote up 17 vote down check
  • If you control one or both: edit one to change the name and recompile Or equivalently see Ben and unknown's answers which will work without access to the source code.
  • If you don't control either of them you can wrap one of them up. That is compile another (statically linked!) library that does nothing except re-export all the symbols of the original except the offending one, which is reached through a wrapper with an alternate name. What a hassle.
  • Added later: Since qeek says he's talking about dynamic libraries, the solutions suggested by Ferruccio and mouviciel are probably best. (I seem to live in long ago days when static linkage was the default. It colors my thinking.)

Apropos the comments: By "export" I mean to make visible to modules linking to the library---equivalent to the extern keyword at file scope. How this is controlled is OS and linker dependent. And it is something I always have to look up.

link|flag
You stole the answer out of my mouth. +1 – toast Mar 24 at 17:04
Luck of the reload, or something. – dmckee Mar 24 at 17:05
That was my first thought as well, but won't you end up with the same collision problem? In the end, the entire project has to link - at compile/link time or at run time - at which time both the offending libraries have to load as-is. – unknown (yahoo) Mar 24 at 17:10
@unknown: The wrapper must be compiled with static linkage, and should not export the offending symbol. Then you can still dynamically link the wrapper. Edited for more clarity, Thanks. – dmckee Mar 24 at 17:13
If qeek's problem is with ddl's and not static libraries, how is it possible to make a new library with a wrapper? Since, the wrapper library would have to dynamically wrap around a function in the library you don't want to link with in the first place. – jeffD Mar 24 at 17:14
show 6 more comments
vote up 8 vote down

It is possible to renames symbols in an object file using objcopy --redifine-sym old=new (see man objcopy).

Then just call the functions using their new names and link with the new object file.

link|flag
great answer, +1 – Evan Teran Mar 24 at 17:54
Nice. This would be trivial to add to a Makefile. If the libraries are ever updated, an objcopy incantation would be much easier to update than some of the other solutions. – sigjuice Mar 25 at 6:24
Don't forget to rename the symbols in the header files as well. – mouviciel Apr 2 at 11:56
vote up 5 vote down

Here's a thought. Open one of the offending libraries in a hex editor and change all occurrences of the offending strings to something else. You should then be able to use the new names in all future calls.

UPDATE: I just did it on this end and it seems to work. Of course, I've not tested this thoroughly - it may be no more than a really good way to blow your leg off with a hexedit shotgun.

link|flag
actually not a terrible solution. A bit hackish, but all you'd be doing is changing the strings in the symbol table. No real functional harm in that. – Evan Teran Mar 24 at 17:52
You'd probably want to rename the library, as well - lest someone else came along, trying to load the thing again. You'd go from one conflict to dozens or hundreds. =] I love this about stackoverflow: we have a tested answer to a question and it has 3 votes. The first (incomplete) answer: 17. =] – unknown (yahoo) Mar 26 at 20:04
vote up 3 vote down

You should not use them together. If I remember correctly, the linker issues an error in such a case.

I didn't try, but a solution may be with dlopen(), dlsym() and dlclose() which allow you to programmatically handle dynamic libraries. If you don't need the two functions at the same time, you could open the first library, use the first function and close the first library before using the second library/function.

link|flag
Thanks. Didn't think about this. Although, I'd like to have both at the same time. – qeek Mar 24 at 17:05
vote up 3 vote down

This problem is the reason c++ has namespaces. There's not really a great solution in c for 2 third party libs having the same name.

If it's a dynamic object, you might be able to explicitly load the shared objects (LoadLibrary/dlopen/etc) and call it in that fashion. Alternately, if you don't need both libs at the same time in the same code, you can maybe do something with static linking (if you have the .lib/.a files).

None of these solutions apply to all projects, of course.

link|flag
vote up 3 vote down

Under Windows, you could use LoadLibrary() to load one of those libraries into memory and then use GetProcAddress() to get the address of each function you need to call and call the functions through a function pointer.

e.g.

HMODULE lib = LoadLibrary("foo.dll");
void *p = GetProcAddress(lib, "bar");
// cast p to the approriate function pointer type (fp) and call it
(*fp)(arg1, arg2...);
FreeLibrary(lib);

would get the address of a function named bar in foo.dll and call it.

I know Unix systems support similar functionality, but I can't think of their names.

link|flag
It's dlopen() in UNIX :) That has been answered previosuly. – qeek Mar 24 at 17:49
vote up 1 vote down

Swear? As far as I am aware, there isn't much you can do if you have two libraries that expose link points with the same name and you need to link against both.

link|flag
I was hoping there is a solution... – qeek Mar 24 at 16:56
I think this is sort of a Kobyashi Moru... – Uri Mar 24 at 16:58
1  
Swear is definitely the first step. No doubt about it. – dmckee Mar 24 at 17:03
vote up 1 vote down

You should write a wrapper library around one of them. Your wrapper library should expose symbols with unique names, and not expose the symbols of the non-unique names.

Your other option is to rename the function name in the header file, and rename the symbol in the library object archive.

Either way, to use both, it's gonna be a hack job.

link|flag
vote up 0 vote down

I've never used dlsym, dlopen, dlerror, dlclose, dlvsym, etc., but I'm looking at the man page, and it gives an example of opening libm.so and extracting the cos function. Does dlopen go through the process of looking for collisions? If it doesn't, the OP could just load both libraries manually and assign new names to all the functions his libraries provide.

link|flag

Your Answer

Get an OpenID
or

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