Hello
Problem here is that the two libraries you are attempting to link with your project are object libraries.
When you create the library, objects defined within an object library are not assigned an address.
This is done at linking time, when the liner takes all the object files and object libraries and tries to create an executable file.
At linking time if you have two libraries referencing an object with the same name, for the linker this is the same object.
Only way to avoid that is to change the symbol name in one of the libraries.
CrasyCat