CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 1999
    Posts
    6

    Debug & Release version



    I wonder are there other differences between DEBUG and RELEASE version of developed application besides the point that the former has embedded debug information ?


    Thanks

  2. #2
    Join Date
    Apr 1999
    Location
    Germany
    Posts
    418

    Re: Debug & Release version



    Hi Clarence,


    yes, there are more differences. The debug version uses a special heap managment to detect memory leaks.


    Martin

  3. #3
    Join Date
    Apr 1999
    Posts
    6

    Re: Debug & Release version



    Martin,


    I was thinking of giving my users the DEBUG version of my application. Are there other things that I need to think about in doing so ?

    Thanks for answering.

  4. #4
    Join Date
    Apr 1999
    Location
    Germany
    Posts
    418

    Re: Debug & Release version



    Hi Clarence,


    if you users aren't your beta testers I don't recommend in giving away a debug version. A debug version is normally a lot bigger and runs slower.


    BTW, I forgot the stack probes. The stack is tested for integrity on every function call. And the code is not optimized.


    Martin

  5. #5
    Join Date
    Apr 1999
    Posts
    6

    Re: Debug & Release version



    Thanks Martin !

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured