The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => Easy Code => Topic started by: vmars316 on April 28, 2011, 08:56:42 PM

Title: How to shut off the debug inEasyCode?
Post by: vmars316 on April 28, 2011, 08:56:42 PM
Greets,
In chap1 of BillAikens tutorial,
he says to unCheck the "Symbolic information" checkbox
and then msg "= helloWorld - Debug =" should change to "= helloWorld - Release =".
The msg doesnt change for me, and the
pgm size is still the same: 
helloWorld.exe - No error
90459 bytes
And i dont see any checkbox for: packer for executable files – UPX

How can I shut off the debug inEasyCode?
Thanks...vmars316
Title: Re: How to shut off the debug inEasyCode?
Post by: Ramon Sala on April 28, 2011, 09:40:37 PM
Hi vmars316,

Open the Project Properties window (by clicking the "Project->Properties" menu) and uncheck the "Add symbolic information" option. Rebuild the project and in the Release folder you will find the executable file without any debugging information.

About the "packer for executable files – UPX", uncheck the "Compress the executable file (Release mode only)" option, which is also in the Project Properties window.

Ramon
Title: Re: How to shut off the debug inEasyCode?
Post by: vmars316 on April 29, 2011, 01:19:41 AM
Works great, Thanks...vmars