| 1 |
158 |
chris |
#
|
| 2 |
208 |
chris |
# $Id: INSTALL,v 1.2 2001-09-27 11:59:04 chris Exp $
|
| 3 |
158 |
chris |
#
|
| 4 |
|
|
|
| 5 |
|
|
Building RTEMS
|
| 6 |
|
|
==============
|
| 7 |
|
|
See the file README.configure.
|
| 8 |
|
|
|
| 9 |
|
|
|
| 10 |
|
|
UNCOMPRESSING .tgz FILES
|
| 11 |
|
|
===========================
|
| 12 |
|
|
Many of the files found in this directory and its subdirectories
|
| 13 |
|
|
are gzip'ed, tar archive files. These files have the ".tgz"
|
| 14 |
|
|
extension. They were compressed with gzip version 1.2.4.
|
| 15 |
|
|
|
| 16 |
|
|
Use a command sequence similar to the following to uncompress each
|
| 17 |
|
|
file:
|
| 18 |
|
|
|
| 19 |
|
|
gzcat FILE.tgz | tar xvof -
|
| 20 |
|
|
|
| 21 |
|
|
where FILE.tgz is the file to be installed. This procedure will
|
| 22 |
|
|
extract the files in the archive into the current directory.
|
| 23 |
|
|
All of the .tgz files associated with this release RTEMS will
|
| 24 |
|
|
place their contents in a subdirectory rtems- in the current
|
| 25 |
|
|
directory.
|
| 26 |
|
|
|
| 27 |
|
|
If you are unsure of what is in an RTEMS archive file, then use
|
| 28 |
|
|
the following command sequence to get a listing of the contents:
|
| 29 |
|
|
|
| 30 |
|
|
gzcat FILE.tgz | tar tvf -
|
| 31 |
|
|
|
| 32 |
|
|
NOTES:
|
| 33 |
|
|
|
| 34 |
|
|
(1) The "-o" option to tar is included on the tar command line
|
| 35 |
|
|
so that the user extracting the tar archive will own the extracted
|
| 36 |
|
|
files.
|
| 37 |
|
|
|
| 38 |
|
|
(2) gzcat is sometimes installed as zcat. Be warned that on many
|
| 39 |
|
|
(most) UNIX machines, zcat is associated with compress (.Z files).
|
| 40 |
|
|
|
| 41 |
|
|
(3) If you do not have gzip 1.2.4, it is available from numerous sites
|
| 42 |
|
|
including this one. Other sites include ftp.gnu.org and ftp.cdrom.com.
|
| 43 |
|
|
|
| 44 |
|
|
(4) The GNU archive files included in this distribution are packaged
|
| 45 |
|
|
exactly like they are on official GNU ftp sites. When extracting
|
| 46 |
|
|
GNU archives, they will not extract under a rtems-
|
| 47 |
|
|
directory. They will extract themselves under a directory which
|
| 48 |
|
|
is the name and version of the tool in question. For example,
|
| 49 |
|
|
gcc-2.5.8.tgz will extract its contents into the subdirectory
|
| 50 |
|
|
gcc-2.5.8.
|
| 51 |
|
|
|