How to stop Delphi from creating an RSM file?

I just added the β€œ64 bit” platform to my project, and my Delphi (XE7) continues to generate a huge RSM file (which increases compilation time). According to Help, this should not happen if the option "Enable remote debugging symbols" is disabled.

And in my case it is disabled. enter image description here
Is there anything else to disable?

+7
64bit compilation delphi delphi-xe7
source share
1 answer

from http://embarcadero.newsgroups.archived.at/public.delphi.ide/201203/12030416462.html

Delphi XE2 creates several MB MB RSM files. As far as I understand, these files are intended for remote debugging. Is there any way to disable the generation of these files?

Yes. In the "Project Settings" option, see the "Delphi \ Linking Compiler" page for "Enable Remote Debugging Symbols" and disable it if you use Win32 debugging. Please note that this is necessary for debugging Win64.

and continue http://www.devsuperpage.com/search/Articles.aspx?G=2&ArtID=20168

The IDE is 32-bit, because this is the only way it can work on both 32-bit and 64-bit versions of Windows. (Win64 can run 32-bit applications, but Win32 cannot run 64-bit applications.) Therefore, a remote debugger is used for 64-bit and cross-platform applications.

Jeff Overcash from TeamB

Is the reason Delphi XE2 is not really 64-bit?

Of course, then it cannot be run on a 32-bit OS. All third-party components will not work at all until the 64-bit version is installed (the 64-bit IDE cannot load the 32-bit bit), this will be the main reason for people who have not updated either. Support for both 32-bit and 64-bit IDE doubles testing time for virtually no benefit.

+7
source share

All Articles