我正在使用Delphi的fastMM内存管理器,当我尝试使用完整的调试模式时,我失败了。
编译时出现以下错误:
FastMM\FastMM4.pas(6872) Error: Undeclared identifier: 'RegisterExpectedMemoryLeak'
FastMM\FastMM4.pas(6948) Error: Undeclared identifier: 'UnregisterExpectedMemoryLeak'
FastMM\FastMM4.pas(9269)
import_test.dpr(24) Fatal: Could not compile used unit 'FastMM\FastMM4.pas'
.inc文件告诉加载完整的调试dll。我已经到处复制了FastMM_FullDebugMode.dll文件。看起来我应该在我的项目中包含一些内容。
我可能错过了一些非常明显的东西。
Delphi版本是7。
答案 0 :(得分:8)
通过更改包含文件EnableMemoryLeakReporting
中的FastMM4Options.inc
指令:
{.$define EnableMemoryLeakReporting}
为:
{$define EnableMemoryLeakReporting}
同时阅读该文件中的注释并了解各种选项,根据需要打开/关闭它们。