开发者

Shrinking exe by removing RTTI

开发者 https://www.devze.com 2023-01-22 05:54 出处:网络
In this question (link) it was said that the line below (in each unit) would remove as much RTTI as possible:

In this question (link) it was said that the line below (in each unit) would remove as much RTTI as possible:

    {$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])} 

The posting didn't mention what Delphi version it 开发者_运维百科works with, but I assume D2010. However, when I include the line above, I get this error:

    DCC Fatal Error: E2158 System unit out of date or corrupted: 
    missing TVisibilityClasses.

I'm using a "stock" version of D2010 and have never done anything that I'm aware of that would change the default installation or the libraries.

Any suggestions? TIA

Related question: link.


Make sure you put the "{$RTTI" line below the "unit unit1;" line.

Note that as of XE5 and newer, this directive needs to be in each individual unit for which you want to disable RTTI. Before that (as in comments, which applies only to XE4 and below) it could be in the DPR file and would apply to all units in the project.


The new RTTI is for Delphi 2010 and up.

It can be removed, but then lots of things will have limited functionality (like JSON conversion, part of DataSnap and many of the newer 3rd party libraries that do ORM or other mappings).

Things depending on TValue are gone anyway.

"old style" RTTI (which was introduced in Delphi 1 and is still present in Delphi 2010) cannot be removed.

So: it is recommended to remove RTTI only from your own units, and not from the RTL and VCL.

--jeroen

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号