CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Paul McKenzie

Search: Search took 3.79 seconds.

  1. Replies
    9
    Views
    5,226

    Re: Release with debug information

    It is a build with optimizations disabled. That's all it is.

    If your program does indeed behave differently if optimizations are used, then you have a greater problem than just what a typical...
  2. Replies
    9
    Views
    5,226

    Re: Release with debug information

    You're getting confused with a "debug build" and a build with debigging information included. There are two independent and separate things here, programs compiled with/without optimizations, and...
  3. Replies
    9
    Views
    5,226

    Re: Release with debug information

    Turn off (choose Disable) the C++ optimizations and rebuild your program.

    You're trying to debug an optimized build, and you can't do that since the final object code is far different than the...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured