VS2017 blocking on non-existing object files when debugging with pdb file
问题 We are in the process of switching Visual C++ projects to the vc141 toolchain (VS 2017). We have encountered a problem where Visual Studio is unable to use a .pdb file whose source .obj files don't exist anymore (for example because they have been compiled on a build server). Let's take a very simple executable project: #include <iostream> int main() { std::cout << "Hello world\n"; std::cin.ignore(); } The .vcxproj file is all default, except for <GenerateDebugInformation>true<