Difference between revisions of "Debugger"

From Free Pascal wiki
Jump to navigationJump to search
Line 16: Line 16:
 
* [[IDE Window: Debug Output| Debug Output]]
 
* [[IDE Window: Debug Output| Debug Output]]
 
* [[IDE Window: Debugger Options| Debugger Options]]
 
* [[IDE Window: Debugger Options| Debugger Options]]
* [[IDE Window: DebuggerClassOptionsFrame| DebuggerClassOptionsFrame]]
+
* [[IDE Window: DebuggerClassOptionsFrame| Class Options Frame]]
* [[IDE Window: DebuggerGeneralOptionsFrame| DebuggerGeneralOptionsFrame]]
+
* [[IDE Window: DebuggerGeneralOptionsFrame| General Options Frame]]
 
* [[IDE Window: Evaluate/Modify| Evaluate/Modify]]
 
* [[IDE Window: Evaluate/Modify| Evaluate/Modify]]
 
* [[IDE Window: Event Log| Event Log]]
 
* [[IDE Window: Event Log| Event Log]]

Revision as of 13:38, 27 July 2020

English (en) suomi (fi) français (fr)

A debugger is a program used to test and debug other programs. Often, when using the debugger, the program being scanned is compiled with special compiler settings which adds information for tracing errors. This way, the debugger knows what the source code file is named for and the line from which the code is executed. But when the program works well, you can remove this data and reduce the size of the binary.

Debuggers also monitor the contents of program variables and often produce a back-trace showing the instructions that were being executed immediately before a program failure occurred.


See also

GDB