FastMM5

delphi package - automated exception handling
Post Reply
santiago
Posts: 73
Joined: Thu May 05, 2016 6:01 pm

FastMM5

Post by santiago »

Hello madschi,

I am testing FastMM5 which was released recently.
https://github.com/pleriche/FastMM5

madExcept automatically adds the following entries to the dpr file: madExcept, madLinkDisAsm, madListModules

When using FastMM4, these entries are added AFTER the FastMM4 entry:

Code: Select all

uses
  FastMM4,
  madExcept,
  madLinkDisAsm,
  madListModules,
However when using FastMM5 they are added BEFORE FastMM5:

Code: Select all

uses
  madExcept,
  madLinkDisAsm,
  madListModules,
  FastMM5,
These entries must be added also AFTER FastMM5, otherwise FastMM5 cannot be installed.

Also, have you tested madExcept with FastMM5? Anything to be aware of?

Thank you!
madshi
Site Admin
Posts: 10764
Joined: Sun Mar 21, 2004 5:25 pm

Re: FastMM5

Post by madshi »

Thanks for the threads up, I'll modify madExcept to account for FastMM5.

So far I don't recall ever having had to change anything in madExcept for a memory manager, so I wouldn't expect to have to do any changes for FastMM5. Other than the dpr uses clause order, of course.
santiago
Posts: 73
Joined: Thu May 05, 2016 6:01 pm

Re: FastMM5

Post by santiago »

Great.
Please let me know once the new version is available for download.
Thx!
madshi
Site Admin
Posts: 10764
Joined: Sun Mar 21, 2004 5:25 pm

Re: FastMM5

Post by madshi »

Here's a beta build with 10.4 and FastMM5 support:

http://madshi.net/madCollectionBeta.exe

New official build coming soon, probably next week.
Post Reply