Describe the bug
/MD version of STL DLL built from sources does not call initialize_pointers() in winapisupp.cpp
Command-line test case
#include <mutex>
int main()
{
std::mutex mx;
}
Build with /MD (not /MT or /MDd)
Step using disassembly deep into constructor, see that it creates Vista critical section, not win7
Describe the bug
/MD version of STL DLL built from sources does not call
initialize_pointers()inwinapisupp.cppCommand-line test case
Build with
/MD(not /MT or /MDd)Step using disassembly deep into constructor, see that it creates Vista critical section, not win7