赞
踩
Visual Leak Detector(以下简称:VLD)现在最新版本的 VLD v2.5.1 ,只支持 Visual Studio 2008 到 Visual Studio 2015。
但我正在使用的环境是VS2019,现将配置方式记录如下,方便后期查阅。
路径:VLG官网路径
1)断点调试程序时,把文件vld.ini放在和.vcxproj工程文件一起的路径下。
2)发布程序时,把文件vld.ini放在和应用程序exe文件一起的路径下。
将vld.ini中的ReportTo由ReportTo = debugger修改为ReportTo = both
1)对于非MFC工程,如有有 #include "stdafx.h" 的话,一定要把 "vld.h" 放在 stdafx.h之后包含。
#include "stdafx.h"
#include <vld.h>
2)对于MFC工程,包含vid.h需要在包含afxwin.h之前
#include <vld.h>
#include <afxwin.h>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。