RESOLUTION
There are two ways to resolve this problem. The first solution involves forcing the linker to link the libraries in the correct order. The second solution allows you to find the module that's causing the problem and correct it.
Solution One - Force Linker to Link Libraries in Correct Order
Open the Project Settings dialog box by clicking Settings on the Build menu.
in the Settings For view, select (highlight) the project configuration that's getting the link errors.
Click the Link tab.
Select INPUT in the Category combo box.
In the Libraries to Ignore edit box, insert the library names (for example, Nafxcwd.lib Libcmtd.lib)
NOTE: The linker command line equivalent in /NOD:<library name>
In the Object/library Modules edit box, insert the library names. You must ensure that these are listed in order and as the first two libraries in the line (for example, Nafxcwd.lib Libcmtd.lib).
Solution Two - Find the Problem Module and Correct It
Perform the following steps to see the current library link order:
Open the Project Settings dialog box by clicking Settings on the Build menu.
In the Settings For view, Select (highlight) the project configuration that's getting the link errors .
Click the Link tab.
Type the following in the Project Options dialog box:
/verbose:lib
Rebuild your project. The libraries will now be listed in the output window during the linking process.
STATUS
This behavior is by design.
MORE INFORMATION
When using MFC libraries, you must make sure they are linked before the CRT library. This can be done by ensuring every file in your project includes ..\Msdev\Mfc\Include\Afx.h first, either directly (#include <Afx.h>

or indirectly (#include <Stdafx.h>

. The Afx.h include file forces the correct order of the libraries, by using the #pragma comment (lib,"<libname>") directive.
If the source file has a .c extension, or the file has a .cpp extension but does not use MFC, you can create and include a small header file (Forcelib.h) at the top of the module. This new header will ensure the correct library search order.
Visual C++ does not contain this header file, but you can easily create this file by performing the following steps:
Open ..\Msdev\Mfc\Include\Afx.h.
Select line 29 (#ifndef _AFX_NOFORCE_LIBS) through line 204 (#endif //!_AFX_NOFORCE_LIBS).
Copy the selection to the Windows Clipboard.
Create a new text file.
Paste the contents of the Clipboard into this new file.
Save the file as ..\Msdev\Mfc\Include\Forcelib.h.
Partager