My platform is Windows / Visual Studio / C++
I have two static .lib files. They are from two different vendors. Unfortunately the lib symbols are colliding on a globally defined symbol that each file defines. They both choose the same name for something. eek!
Is there a way to namespace or "hide" the symbols from the two libraries from each other so they do not conflict?
I know you can set the linker option /FORCE:MULTIPLE but it is not clear what the consequences will be to the libraries when the name conflicts. http://msdn.microsoft.com/en-us/library/70abkas3%28v=VS.71%29.aspx