Introducing G2.ai, the future of software buying.Try now
GDB (GNU Debugger)
Show rating breakdown
Save to My Lists
Unclaimed
Unclaimed

Top Rated GDB (GNU Debugger) Alternatives

Jira
(6,436)
4.3 out of 5
GitLab
(835)
4.5 out of 5

GDB (GNU Debugger) Reviews & Product Details - Page 2

GDB (GNU Debugger) Overview

What is GDB (GNU Debugger)?

GDB, the GNU Project debugger, allows you to see what is going on `inside' another program while it executes -- or what another program was doing at the moment it crashed.

GDB (GNU Debugger) Details
Show LessShow More
Product Description

GDB, the GNU Project debugger, allows you to see what is going on `inside' another program while it executes -- or what another program was doing at the moment it crashed.


Seller

Free Software Foundation

Description

The Free Software Foundation (FSF) is a nonprofit organization founded in 1985 by Richard Stallman with the mission to promote computer user freedom and to defend the rights of all free software users. The FSF facilitates the development and use of free (as in freedom, not free of charge) software – particularly the GNU operating system and its GNU/Linux variants – and campaigns against threats to user freedoms like software patents and digital restrictions management (DRM). The foundation also provides critical resources to support the development and legal protection of free software, including software licensing, compliance, and education on the benefits of using and contributing to free software. The FSF's website, https://fsf.org, serves as a hub for its advocacy efforts, offering news, a comprehensive library of free software, and other resources for both the technical community and the general public.

Recent GDB (GNU Debugger) Reviews

bismeet m.
BM
bismeet m.Enterprise (> 1000 emp.)
5.0 out of 5
"GDB and its utility"
It allows you to step through line by line. It works on many Unix-like systems and works for a wide variety of languages.
Verified User
U
Verified UserEnterprise (> 1000 emp.)
4.5 out of 5
"Quick debugger tool"
It is very useful for debugging with proper pointing to where is bug.
MP
Manuel P.Mid-Market (51-1000 emp.)
3.5 out of 5
"GNU Project Debugger."
Specify system problems and fix application performance, compatible with C ++ and Pascal. Debug and dump on different platforms available.

GDB (GNU Debugger) Media

Answer a few questions to help the GDB (GNU Debugger) community
Have you used GDB (GNU Debugger) before?
Yes

16 GDB (GNU Debugger) Reviews

4.5 out of 5
The next elements are filters and will change the displayed results once they are selected.
Search reviews
Hide FiltersMore Filters
The next elements are filters and will change the displayed results once they are selected.
The next elements are filters and will change the displayed results once they are selected.
16 GDB (GNU Debugger) Reviews
4.5 out of 5
16 GDB (GNU Debugger) Reviews
4.5 out of 5
G2 reviews are authentic and verified.
Dragan C.
DC
Embedded Software Engineer
Enterprise(> 1000 emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about GDB (GNU Debugger)?

Flexibility, easy to use on any platform, fast. Review collected by and hosted on G2.com.

What do you dislike about GDB (GNU Debugger)?

The exiting should be on one click,

multitasking debug Review collected by and hosted on G2.com.

What problems is GDB (GNU Debugger) solving and how is that benefiting you?

Usually bug debugging on unit test on host or embedded code on target. Review collected by and hosted on G2.com.

Collin B.
CB
Cyberneticist
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about GDB (GNU Debugger)?

GDB is essential to a hacker. It works for many languages. It also allows a user to connect via network sockets so GUI applications can be debugged. Also, because the tool is so old, it has a lot of shortcuts, hotkeys, and tricks to learn, meaning that its power grows as you learn it better. Review collected by and hosted on G2.com.

What do you dislike about GDB (GNU Debugger)?

The tool is a bit arcane. It is a tool that was built for the era of unix hacking, not for the era of web development. The documentation reflects its age by being a bit crusty looking. I personally know that old tools are well worn and well formed tools, but the neophyte in me is always looking for a new (and probably worse) technology. Review collected by and hosted on G2.com.

Recommendations to others considering GDB (GNU Debugger):

It is a classic tool that is worth learning. Review collected by and hosted on G2.com.

What problems is GDB (GNU Debugger) solving and how is that benefiting you?

I use GDB primarily when I write C and C++ code. In the majority of cases, I use it to print a backtrace when I hit a fatal error like a segfault. Review collected by and hosted on G2.com.

Verified User in Information Services
UI
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
Rating Updated ()
What do you like best about GDB (GNU Debugger)?

GDB help user to debug the program on linux platform.GDB can used for core dump analysis also.We can use core file to debug the application after the crash.User must enable the creation of core file using ulimit.Multi thread application can also debugged using gdb.User can select the thread todubug using "thread" command in the gdb.using thread command we can switch to thread by specifying thread number.Info comamnd can be used to find the number of thread and thread number for each thread.When crash occur we can check the back trace using "bt" command.Value of variable can also printed using print command..Core dump analysis is the one of the useful thing a developer can perfrom to find real reason of crash.Core file can be used to find the core dump analysis.use need to enable corefile using ulimit command. Review collected by and hosted on G2.com.

What do you dislike about GDB (GNU Debugger)?

Debugging using gdb will slow the program execution.Since high performance issues can not debugged using gdb.Since program execution slowed down user can not get any idea about high performance issue

Addrres sanitizer flag must be used while compiling otherwise memory corruption issue can not be identified using gdb.. Review collected by and hosted on G2.com.

Recommendations to others considering GDB (GNU Debugger):

gdb help to debug without using printf .Use can check any value of variable while debugging using print command o riser can examine the memory content using x .Conditional break can be used within the gdb it is very help full.Using gdbserver user can debug remote target aso Review collected by and hosted on G2.com.

What problems is GDB (GNU Debugger) solving and how is that benefiting you?

Using gdb we can identify the crash issue.Core dump analysis is very helpful after program crashed .Core file can be used to identify the actual issue of crash. Review collected by and hosted on G2.com.

Verified User in Computer Software
UC
Small-Business(50 or fewer emp.)
More Options
Validated Reviewer
Verified Current User
Review source: G2 invite
Incentivized Review
What do you like best about GDB (GNU Debugger)?

I love how portable this debugger is. Once you find your way around the common debugging commands, you can easily debug from the command line and examine memory. Review collected by and hosted on G2.com.

What do you dislike about GDB (GNU Debugger)?

There is a learning curve for picking up this debugger effectively. The 'print' command is your friend. Review collected by and hosted on G2.com.

What problems is GDB (GNU Debugger) solving and how is that benefiting you?

I have used GDB for debugging school projects in C and C++. I have been able to step through code effectively and work out synchronization issues for multithreaded applications. Review collected by and hosted on G2.com.

Verified User in Automotive
UA
Enterprise(> 1000 emp.)
More Options
Validated Reviewer
Review source: Organic
What do you like best about GDB (GNU Debugger)?

Best part of Gnu debugger is

Very use to use and trace the fault within small time.

Code dumped and unexpected behavior you can get to know easily.

Break point, display and read command enhance its features. Review collected by and hosted on G2.com.

What do you dislike about GDB (GNU Debugger)?

Taking little more time to execute the larger .exe file

Highlight option is not there. Review collected by and hosted on G2.com.

Recommendations to others considering GDB (GNU Debugger):

Good for .C and .Cpp file to debug. Review collected by and hosted on G2.com.

What problems is GDB (GNU Debugger) solving and how is that benefiting you?

C and c++ code to debugging is very easy and easy to find the segmentation fault or code dumped. Review collected by and hosted on G2.com.

Chitvan G.
CG
Assistant Professor
Mid-Market(51-1000 emp.)
More Options
Validated Reviewer
Review source: Organic
What do you like best about GDB (GNU Debugger)?

Perfect debugger for all developers ... way to make your software qualified Review collected by and hosted on G2.com.

What do you dislike about GDB (GNU Debugger)?

Need to learn about tool before using but still easy Review collected by and hosted on G2.com.

Recommendations to others considering GDB (GNU Debugger):

Useful must use it Review collected by and hosted on G2.com.

What problems is GDB (GNU Debugger) solving and how is that benefiting you?

Testing Review collected by and hosted on G2.com.