Error : LNK2001 :unresolved external symbol __CrtDbgReportW

Building a Microsoft Visual C++ project you may get error "LNK2001: unresolved external symbol __CrtDbgReportW".

If you have recently changed the VS runtime, check if the runtime library settings (under C++ -> code generation settings ) are same for the project and all the libs you are linking to.

If there is a single project rebuilding should solve the error.

No comments:

Post a Comment

Golang: Http POST Request with JSON Body example

Go standard library comes with "net/http" package which has excellent support for HTTP Client and Server.   In order to post JSON ...