GDB: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 9: | Line 9: | ||
== Introduction to GDB == | == Introduction to GDB == | ||
<Package Description Needed> | |||
== Dependencies == | == Dependencies == | ||
Revision as of 22:20, 11 January 2007
| Download Source: | http://ftp.gnu.org/gnu/gdb/gdb-7.0.tar.bz2 |
|---|
Introduction to GDB
<Package Description Needed>
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
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