Was meinst du mit installiert? In der
IDE installiert oder im Programm eingebunden?
So:
http://stackoverflow.com/questions/1...ce-from-fastmm
Zitat:
The internal Delphi version of FastMM doesn't support stack traces.
If you want to log the memory leak stack traces, you have to:
download the FastMM library
include it as the first
unit in your project:
program YourProject;
uses
FastMM4,
SysUtils,
Forms,
...
enable the FullDebugMode in FastMM4Options.inc
set Map file to Detailed in the linking project options (the FastMM_FullDebugMode.dll processes the .map file)
add the FastMM_FullDebugMode.dll in your binary (or Windows System32) directory
Und in allen DPRs gleich nach dem begin ReportMemoryLeaksOnShutdown := DebugHook <> 0; reingeschrieben.
Zum Konfigurieren der FastMM4Options.inc habe ich den
GUI-Editor von Jeremy North genutzt.