summaryrefslogtreecommitdiffstats
path: root/doc/started/buildrt.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-09-27 22:28:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-09-27 22:28:16 +0000
commit34ffa996302ff44dd323c957abc17a6443cdedf4 (patch)
tree08878b55f90b93a6ee48a567633dbfe670431100 /doc/started/buildrt.t
parent2004-09-27 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-34ffa996302ff44dd323c957abc17a6443cdedf4.tar.bz2
2004-09-27 Joel Sherrill <joel@OARcorp.com>
PR 681/doc PR 682/doc * buildc.t, buildrt.t, sample.t: Fix PATH and tar examples. Enable binutils link again. * user/overview.t: Chapter numbering in preface was wrong.
Diffstat (limited to '')
-rw-r--r--doc/started/buildrt.t13
1 files changed, 6 insertions, 7 deletions
diff --git a/doc/started/buildrt.t b/doc/started/buildrt.t
index 91ff840161..93df0db738 100644
--- a/doc/started/buildrt.t
+++ b/doc/started/buildrt.t
@@ -20,10 +20,7 @@ placed in your @code{archive} directory.
FTP Site: @value{RTEMSFTPSITE}
Directory: @value{RTEMSFTPDIR}/@value{VERSION}
File: @value{RTEMSTAR}
-@ifset use-html
-@c URL: @uref{ftp://@value{RTEMSFTPSITE}@value{RTEMSFTPDIR}/@value{VERSION}, Download RTEMS components}
- URL: ftp://@value{RTEMSFTPSITE}@value{RTEMSFTPDIR}/@value{VERSION}
-@end ifset
+ URL: @uref{ftp://@value{RTEMSFTPSITE}@value{RTEMSFTPDIR}/@value{VERSION}/@value{RTEMSTAR},,ftp://@value{RTEMSFTPSITE}@value{RTEMSFTPDIR}/@value{VERSION}/@value{RTEMSTAR}}
@end example
@subheading RTEMS Examples including Hello World
@@ -54,11 +51,13 @@ This creates the directory @value{RTEMSUNTAR}.
@section Add <INSTALL_POINT>/bin to Executable PATH
In order to compile RTEMS, you must have the cross compilation toolset
-in your search path. The following command appends the directory
-where the tools were installed prior to this point:
+in your search path. It is important to have the RTEMS toolset first
+in your path to ensure that you are using the intended version of all
+tools. The following command prepends the directory
+where the tools were installed in a previous step:
@example
-export PATH=$PATH:<INSTALL_POINT>/bin
+export PATH=<INSTALL_POINT>/bin:${PATH}
@end example
NOTE: The above command is in Bourne shell (@code{sh}) syntax and