Quantcast
Channel: Visual Leak Detector for Visual C++ 2008-2015
Viewing all articles
Browse latest Browse all 704

New Post: Visual Studio 2013

$
0
0
c273 wrote:
  1. I selected to Add VLD to my path and to install for VS2013 (not VS2008). This allowed me to add the "#include <vld.h> to my source but it would not link as "vld.lib" was not found. Updating Microsoft.Cpp.Win32.user for the include & libraries resolved this. My question here is - why ask to install for VS2013 if this manual update is still needed?
The InnoSetup installer adds the directories into %LOCALAPPDATA%\Microsoft\MSBuild\4.0\Microsoft.Cpp.Win32.user.props. But specifies the Lib directory as
<ClCompile>
      <AdditionalLibraryDirectories>
            C:\Program Files (x86)\Visual Leak Detector\lib\Win32;
            %(AdditionalLibraryDirectories)       
      </AdditionalLibraryDirectories>
</ClCompile>
It should be:
<Link>
      <AdditionalLibraryDirectories>
            C:\Program Files (x86)\Visual Leak Detector\lib\Win32;
            %(AdditionalLibraryDirectories)
      </AdditionalLibraryDirectories>
</Link>
The 2.3 installer put the dbghelp.dll and Microsoft.DTfW.DHL.manifest files in the bin\Win32 folder with the vld_x86.dll. The 2.4 installer does not. :(

Viewing all articles
Browse latest Browse all 704

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>