2003-05-20 17:10:06 UTC
Dev C Debug Nasıl Yapılır
Embarcadero Dev-C is a new and improved fork (sponsored by Embarcadero) of Bloodshed Dev-C and Orwell Dev-C. It is a full-featured Integrated Development Environment (IDE) and code editor for the C/C programming language. It uses Mingw port of GCC (GNU Compiler Collection) as its compiler. How To Debug Line By Line In Dev C There are several ways to interact with and debug your Linux project. Debug using traditional Visual Studio features, such as breakpoints, watch windows, and hovering over a variable.
Dev C++ Debug
Dev C Debug Tutorial
Hi,
I recently managed how to get debugging to work in Dev-C++, but I noticed 2 problems:
1. I have to manually enable 'create debug info' in the linker settings for debugging. Perhaps it should be enabled automatically (or by asking the user) when the 'debug'-button is pressed the first time.
2. If I set breakpoints, only the ones in my 'int main'-
function are reagrded and processed, but if I set them for example in the constructor of some of my classes the program never stops there. Also Dev-C++ says 'the .exe file is older than the source-files, do you want to recompile it?', even if I make a full recompile and then change nothing.
If somebody has an idea how to fix #2, it would be very cool, since I need debugging very much (as a beginner :) )
I recently managed how to get debugging to work in Dev-C++, but I noticed 2 problems:
1. I have to manually enable 'create debug info' in the linker settings for debugging. Perhaps it should be enabled automatically (or by asking the user) when the 'debug'-button is pressed the first time.
2. If I set breakpoints, only the ones in my 'int main'-
function are reagrded and processed, but if I set them for example in the constructor of some of my classes the program never stops there. Also Dev-C++ says 'the .exe file is older than the source-files, do you want to recompile it?', even if I make a full recompile and then change nothing.
If somebody has an idea how to fix #2, it would be very cool, since I need debugging very much (as a beginner :) )