mirror of
https://github.com/google/googletest.git
synced 2025-04-06 05:55:04 +00:00
Updated wiki FAQ page with the runtime library incompatibility entry (contributed by ergins23@gmail.com).
This commit is contained in:
parent
46b5de26d1
commit
39d0ec7a30
1 changed files with 11 additions and 1 deletions
|
@ -763,4 +763,14 @@ end of the program run. The easiest way to avoid this is to use the
|
|||
statically initialized heap objects. See MSDN for more details and additional
|
||||
heap check/debug routines.
|
||||
|
||||
== I am building my project with Google Test in Visual Studio and all I'm getting is a bunch of linker errors (or warnings). Help! ==
|
||||
== I am building my project with Google Test in Visual Studio and all I'm getting is a bunch of linker errors (or warnings). Help! ==
|
||||
|
||||
You may get a number of the following linker error or warnings if you attempt to link your test project with the Google Test library when your project and the are not built using the same compiler settings.
|
||||
|
||||
* LNK2005: symbol already defined in object
|
||||
* LNK4217: locally defined symbol 'symbol' imported in function 'function'
|
||||
* LNK4049: locally defined symbol 'symbol' imported
|
||||
|
||||
The Google Test project (gtest.vcproj) has the Runtime Library option set to /MT (use multi-threaded static libraries, /MTd for debug). If your project uses something else, for example /MD (use multi-threaded DLLs, /MDd for debug), you need to change the setting in the Google Test project to match your project's.
|
||||
|
||||
To update this setting open the project properties in the Visual Studio IDE then select the branch Configuration Properties | C/C++ | Code Generation and change the option "Runtime Library".
|
Loading…
Add table
Reference in a new issue