标签:detail mamicode mem inf blog csdn net png mic
在project中增加
{$IFDEF DEBUG} ReportMemoryLeaksOnShutdown := True; {$ENDIF}
即可得到提示,如果内存有泄漏的话。但是想进一步仔细使用,还得把FMM3加进来。
在project中uses第一行增加
uses FastMM4 in ‘..\..\..\FastMM\FastMM4.pas‘,
同时加进FastMM\FastMM4Messages.pas单元。
以上是第一步。
第二:定义编译条件变量 Shift+Ctrl+F11,打开项目设置窗口,设置Conditional defines。
增加定义三个编译变量:
FullDebugMode
LogMemoryLeakDetailToFile
ClearLogFileOnStartup
最后设置Map file为Detailed。
说明:此记录仅仅用于存档查询备用。
参考致谢:https://blog.csdn.net/cmx8818/article/details/51727230?locationNum=4&fps=1
标签:detail mamicode mem inf blog csdn net png mic
原文地址:https://www.cnblogs.com/usegear/p/12128653.html