Difference between revisions of "GDB"

From Lazarus wiki
Jump to navigationJump to search
(Add page link to lldb used by macOS + FreeBSD)
m (Fix typo)
Line 1: Line 1:
 
{{GDB}}
 
{{GDB}}
 
[[File:archer.jpg|right]]
 
[[File:archer.jpg|right]]
'''GDB''', abbreviated for '''GNU debugger''' and named ''gdb'' as an executable file, is the standard debugger for the GNU operating system and many other platforms including Linux and Windows. In macOS (2018) and FreeBSD (2020), ''gdb'' was been replaced by ''[[lldb]]'', and is no longer supported. [[Lazarus]] uses GDB as default debugger.
+
'''GDB''', abbreviated for '''GNU debugger''' and named ''gdb'' as an executable file, is the standard debugger for the GNU operating system and many other platforms including Linux and Windows. In macOS (2018) and FreeBSD (2020), ''gdb'' was replaced by ''[[lldb]]'', and is no longer supported. [[Lazarus]] uses GDB as default debugger.
  
 
GDB is not a part of Lazarus. Unless you are using Windows or certain versions of macOS with Xcode, you have to install it yourself before using it. Earlier versions of Xcode come with bundled GDB. After installation it will be necessary to set the path to gdb (for example ''/usr/bin/gdb'') in [[IDE_Window:_Debugger_Options#General|Lazarus' debugger settings]].
 
GDB is not a part of Lazarus. Unless you are using Windows or certain versions of macOS with Xcode, you have to install it yourself before using it. Earlier versions of Xcode come with bundled GDB. After installation it will be necessary to set the path to gdb (for example ''/usr/bin/gdb'') in [[IDE_Window:_Debugger_Options#General|Lazarus' debugger settings]].

Revision as of 13:53, 28 May 2022

English (en) français (fr) polski (pl)

archer.jpg

GDB, abbreviated for GNU debugger and named gdb as an executable file, is the standard debugger for the GNU operating system and many other platforms including Linux and Windows. In macOS (2018) and FreeBSD (2020), gdb was replaced by lldb, and is no longer supported. Lazarus uses GDB as default debugger.

GDB is not a part of Lazarus. Unless you are using Windows or certain versions of macOS with Xcode, you have to install it yourself before using it. Earlier versions of Xcode come with bundled GDB. After installation it will be necessary to set the path to gdb (for example /usr/bin/gdb) in Lazarus' debugger settings.

See also

External Links