What should I do if I have two libraries that provide functions with equivalent names?
|
6
|
|||||||||
|
|
|
Apropos the comments: By "export" I mean to make visible to modules linking to the library---equivalent to the |
||||||||||
|
|
|
It is possible to renames symbols in an object file using Then just call the functions using their new names and link with the new object file. |
||||||
|
|
|
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. |
||||
|
|
|
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 |
||
|
|
|
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. |
||
|
|
|
|
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.
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. |
||
|
|
|
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. |
||
|
|
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. |
||
|
|
|
|
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. |
||
|
|
