diff options
author | albert-github <albert.tests@gmail.com> | 2014-08-03 08:47:45 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-08-03 08:47:45 (GMT) |
commit | cce307d96a93515d46068cfdcf5e55c1944ae9e5 (patch) | |
tree | 6c714f9bfc9400ab0b7b238342ac763cbf0b85b4 /winbuild/Doxygen.vcproj | |
parent | 9282aab5ed2a0cca3858df6e62132f959e99edb5 (diff) | |
download | Doxygen-cce307d96a93515d46068cfdcf5e55c1944ae9e5.zip Doxygen-cce307d96a93515d46068cfdcf5e55c1944ae9e5.tar.gz Doxygen-cce307d96a93515d46068cfdcf5e55c1944ae9e5.tar.bz2 |
Error linking 32-bit windows
On Windows there were unresolved debug symbols resulting from libcpmtd. Adding this file to the ignore list solves the link issue. Remains:
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library
even though libcmt is added.
Diffstat (limited to 'winbuild/Doxygen.vcproj')
-rw-r--r-- | winbuild/Doxygen.vcproj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winbuild/Doxygen.vcproj b/winbuild/Doxygen.vcproj index 4377c4c..dabaa4b 100644 --- a/winbuild/Doxygen.vcproj +++ b/winbuild/Doxygen.vcproj @@ -127,7 +127,7 @@ SuppressStartupBanner="true"
AdditionalLibraryDirectories="Debug"
GenerateManifest="false"
- IgnoreDefaultLibraryNames="libcmtd.lib"
+ IgnoreDefaultLibraryNames="libcmtd.lib libcpmtd.lib libcmt.lib"
GenerateDebugInformation="true"
ProgramDatabaseFile=".\Debug\doxygen\$(TargetName).pdb"
SubSystem="1"
|