2001-06-28 Joel Sherrill <joel@OARcorp.com>

* buildc.t, gdb.t: Per PR54, updated to reflect multiple compression
	schemes including bzip2.
This commit is contained in:
Joel Sherrill
2002-06-28 19:16:49 +00:00
parent 0a535af128
commit b2e37958d4
3 changed files with 26 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2001-06-28 Joel Sherrill <joel@OARcorp.com>
* buildc.t, gdb.t: Per PR54, updated to reflect multiple compression
schemes including bzip2.
2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* pictures/Makefile.am: Remove AUTOMAKE_OPTIONS. * pictures/Makefile.am: Remove AUTOMAKE_OPTIONS.

View File

@@ -119,17 +119,23 @@ using the procedures described in @ref{Using configure and make}
or @ref{Using the bit Script}. It is @b{NOT} required if using the procedure or @ref{Using the bit Script}. It is @b{NOT} required if using the procedure
described in @ref{Using RPM to Build BINUTILS GCC and NEWLIB}. described in @ref{Using RPM to Build BINUTILS GCC and NEWLIB}.
GNU source distributions are archived using @code{tar} and
compressed using either @code{gzip} or @code{bzip}.
If compressed with @code{gzip}, the extension @code{.gz} is used.
If compressed with @code{bzip}, the extension @code{.bz2} is used.
While in the @code{tools} directory, unpack the compressed While in the @code{tools} directory, unpack the compressed
tar files using the following command sequence: tar files for BINUTILS, GCC, and NEWLIB using the appropriate
command based upon the compression program used.
@example @example
cd tools cd tools
tar xzf ../archive/@value{GCC-TAR} tar xzf ../archive/TOOLNAME.tar.gz # for gzip'ed tools
tar xzf ../archive/@value{BINUTILS-TAR} tar xIf ../archive/TOOLNAME.tar.bz2 # for bzip'ed tools
tar xzf ../archive/@value{NEWLIB-TAR}
@end example @end example
After the compressed tar files have been unpacked, the following After the compressed tar files have been unpacked using
the appropriate commands, the following
directories will have been created under tools. directories will have been created under tools.
@itemize @bullet @itemize @bullet

View File

@@ -52,7 +52,16 @@ using RPM to build tool binaries.
@c @c
@subsection Unarchive the GDB Distribution @subsection Unarchive the GDB Distribution
Use the following commands to unarchive the GDB distribution: Unarchive the compressed tar files for GDB using the appropriate
command based upon the compression program used for the source
distribution you downloaded.
@example
cd tools
tar xzf ../archive/@{GDB-UNTAR}.tar.gz # for gzip'ed gdb
tar xIf ../archive/@{GDB-UNTAR}.tar.bz2 # for bzip'ed gdb
@endif
@example @example
cd tools cd tools