Difference between revisions of "GDB"

From CBLFS
Jump to navigationJump to search
(Multilib)
Line 30: Line 30:
  
 
== Multilib ==
 
== Multilib ==
 +
=== 32Bit ===
 +
 +
Apply a sed substitution that will suppress the installation of libiberty.a.  The version of libiberty.a that was provided by Binutils during the initial CLFS build will be retained:
 +
 +
sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
 +
 +
Compile the package:
 +
 +
CC="gcc ${BUILD32}" ./configure --prefix=/usr --host=$CLFS_TARGET32 &&
 +
make
 +
 +
Install the package:
 +
 +
make install
  
 
=== 64Bit ===
 
=== 64Bit ===

Revision as of 16:51, 29 July 2007

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

Introduction to GDB

GDB 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.

Project Homepage: http://sourceware.org/gdb

Dependencies

Optional

Non-Multilib

Apply a sed substitution that will suppress the installation of libiberty.a. The version of libiberty.a that was provided by Binutils during the initial CLFS build will be retained:

sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in

Compile the package:

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

Install the package

make install

Multilib

32Bit

Apply a sed substitution that will suppress the installation of libiberty.a. The version of libiberty.a that was provided by Binutils during the initial CLFS build will be retained:

sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr --host=$CLFS_TARGET32 &&
make

Install the package:

make install

64Bit

Apply a sed substitution that will suppress the installation of libiberty.a. The version of libiberty.a that was provided by Binutils during the initial CLFS build will be retained:

sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in

Compile the package:

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

Install the package

make install