zoukankan      html  css  js  c++  java
  • FastMM的安装方法

    FastMM 快速在D2006和2007中已代替了原来的内存管理器。D7也可以使用,而且很方便哦。请看步骤: 

    1. FastMM是开源项目,去她老家先拖个来.  

    http://sourceforge.net/projects/fastmm 

    2.文件替换

    Replacement BorlndMM DLLPrecompiledfor Delphi IDEPerformanceBorlndMM.dll,

    替换掉DelphiBin下的相应文件就可以完成对IDE的提速 

    3. 添加FassMM路径

      Enviroment->Library->Directories添加FassMM路径 

    4.使能FastMM4 

    在你的项目文件中,Project->View Source打开后,uses 后第一个添加FastMM4 

    5.All done! 

    运行程序,如果有Memory leak,在关闭程序时会有一个提示对话框.  

    对话框也是可以关闭的 

    打开FastMM4Options.inc文件。在文件的末尾添加如下代码:

    {$define Release}

    {$ifdef Release} 

    {Specify the options you use for release versions below}

    {$undef FullDebugMode} 

    {$undef CheckHeapForCorruption}

    {$define ASMVersion} 

    {$undef EnableMemoryLeakReporting}

    {$undef UseOutputDebugString}

    {$undef LogErrorsToFile} 

    {$undef LogMemoryLeakDetailToFile}

    {$else} 

    {Specify the options you use for debugging below}

    {$define FullDebugMode} 

    {$define EnableMemoryLeakReporting} 

    {$define UseOutputDebugString}

    {$endif}  

    重新打开把上面第一行条件编译定义选项{$define Release} 注释掉就可以了 如 //{$define Release}即可

  • 相关阅读:
    C++基础学习1: C++布尔类型
    Hadoop-Yarn-框架原理及运作机制
    mapreduce shuffle 和sort 详解
    线程生命周期
    JVM 内存模型及垃圾回收
    利用Hive分析nginx日志
    mysql 30大优化策略
    hive 分组排序,topN
    Java核心卷笔记(一)
    Java 核心卷学习笔记(一)
  • 原文地址:https://www.cnblogs.com/h2zZhou/p/4922571.html
Copyright © 2011-2022 走看看