I have a static C++ library. The code in the library uses STL containers internally. I want to link this library to a dynamic library. During the build I am getting errors:
error LNK2019: unresolved external symbol
related to objects (containers) from STL. I know that there are problems when exporting STL containers from the DLL; however, my library which contains STL is static, so no containers are exported.
Is it possible to link a static library with a dynamic library, if the static library contains STL containers?