Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi XE2: Does FastMM work with Win64 application?

I use FastMM in my Delphi application to trace memory leaking especially in FullDebugMode. With the new release of Delphi XE2, can we use FastMM as the memory manager? Can FastMM work with the Win64 platform?

like image 839
Chau Chee Yang Avatar asked Sep 10 '11 02:09

Chau Chee Yang


2 Answers

FastMM is pre-installed in Delphi XE2 and is the default memory manager for both Win32 and Win64 platforms, but the pre-installed version does not include all the features the open-source FastMM (available on SourceForge) provides. To use all of its features (including FullDebugMode), you have to download and install the open source project from SourceForge.

The project on SourceForge is not updated for XE2 yet; that means, for using FullDebugMode you have to wait a few more days until the open source project is updated for XE2 too.

like image 76
vcldeveloper Avatar answered Nov 09 '22 08:11

vcldeveloper


Pierre Le Riche committed changes to the SVN repository yesterday to add support for both 32 and 64 bit targets of XE2.

like image 42
David Heffernan Avatar answered Nov 09 '22 06:11

David Heffernan