This is a problem if I have an executable and the library uses different versions of another library.
Example:
If I have an executable: A.exe, and it basically wraps and depends on the A.lib static library
Both A.exe and A.lib need a different B.lib library
If I have a situation like this:
A.lib library includes B.lib version 1 (uses the header files from this library) A.exe executable file includes B.lib version 2 A.exe executable links versus B.lib version 2
Under what conditions will this be problematic?
thank
source
share