Difference between revisions of "GDB"

From CBLFS
Jump to navigationJump to search
(I added the package description.)
Line 1: Line 1:
 
{| style="text-align: left; background-color: AliceBlue;"
 
{| style="text-align: left; background-color: AliceBlue;"
|-
+
|-valign="top"
 
!Download Source:
 
!Download Source:
 
| http://ftp.gnu.org/gnu/gdb/gdb-{{GDB-Version}}.tar.bz2
 
| http://ftp.gnu.org/gnu/gdb/gdb-{{GDB-Version}}.tar.bz2
Line 6: Line 6:
  
 
----
 
----
 +
 +
== Introduction to GDB ==
 +
 +
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.
  
 
== Dependencies ==
 
== Dependencies ==

Revision as of 13:20, 1 January 2007

Download Source: http://ftp.gnu.org/gnu/gdb/gdb-7.0.tar.bz2

Introduction to GDB

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.

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make

Install the package

make install