欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VS2017编译Visual Leak Detector

程序员文章站 2022-07-13 21:22:46
...

因为Vld安装包只支持到vs2015,需要在vs2017上使用,这需要自己下载源码编译,记录一下自己编译vld的过程:
1:下载vld源码
: https://github.com/KindDragon/vld
VS2017编译Visual Leak Detector
2:将源码工程在vs2017打开;
3:选择工程配置项为: Debug, X64;
VS2017编译Visual Leak Detector
4:选择一个合适的工具集,这里选择 Visual Studio 2017 (v141);
VS2017编译Visual Leak Detector 5:开始编译;
6:编译遇到问题:**>vld.cpp(976): fatal error C1189: #error: Not supported VS****
VS2017编译Visual Leak Detector
跳转到对应的源文件 vld.cpp 第 975行:将此处改成1916, 1916对应的是vs2017,如果编译vs2019的话,此处改成“1924”;
VS2017编译Visual Leak Detector
7:修改后重新编译,出现链接错误:
VS2017编译Visual Leak Detectorvld-master\lib\cppformat下面的format.cc拷贝到vld-master\src目录下,在工程中将format.cc引入,在format.cc开头加上

#include "stdafx.h"
#include "cppformat/format.h"

VS2017编译Visual Leak DetectorVS2017编译Visual Leak Detector
8:重新编译完成。
VS2017编译Visual Leak Detector