summaryrefslogtreecommitdiffstats
path: root/user/exe
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2022-08-03 14:24:59 +1000
committerChris Johns <chrisj@rtems.org>2022-08-03 14:28:19 +1000
commit1d6dcf811f6c7a54da6b214ddd6d3ca8a372bd47 (patch)
treedbdf40a8749796f1e74babf00d8159e917b5f041 /user/exe
parentversions: Update microblaze, powerpc, riscv and x86_64 (diff)
downloadrtems-docs-1d6dcf811f6c7a54da6b214ddd6d3ca8a372bd47.tar.bz2
versions: Update user manual
Updates #4695
Diffstat (limited to 'user/exe')
-rw-r--r--user/exe/initialization.rst10
-rw-r--r--user/exe/loader.rst12
2 files changed, 11 insertions, 11 deletions
diff --git a/user/exe/initialization.rst b/user/exe/initialization.rst
index 6c9d657..f4b5d7e 100644
--- a/user/exe/initialization.rst
+++ b/user/exe/initialization.rst
@@ -87,15 +87,15 @@ sample application in the RTEMS kernel's testsuite::
.. code-block:: none
- $ rtems-exeinfo --init arm-rtems5/c/xilinx_zynq_zedboard/testsuites/samples/hello.exe
- RTEMS Executable Info 5.5416cfa39dd6
- $ rtems-exeinfo --init arm-rtems5/c/xilinx_zynq_zedboard/testsuites/samples/hello.exe
- exe: arm-rtems5/c/xilinx_zynq_zedboard/testsuites/samples/hello.exe
+ $ rtems-exeinfo --init arm-rtems@rtems-ver-major@/c/xilinx_zynq_zedboard/testsuites/samples/hello.exe
+ RTEMS Executable Info @rtems-ver-major@.5416cfa39dd6
+ $ rtems-exeinfo --init arm-rtems@rtems-ver-major@/c/xilinx_zynq_zedboard/testsuites/samples/hello.exe
+ exe: arm-rtems@rtems-ver-major@/c/xilinx_zynq_zedboard/testsuites/samples/hello.exe
Compilation:
Producers: 2
| GNU AS 2.31.1: 14 objects
- | GNU C11 7.3.0 20180125 (RTEMS 5, RSB e55769c64cf1a201588565a5662deafe3f1ccdcc, Newlib 103b055035fea328f8bc7826801760fb1c055683): 284 objects
+ | GNU C11 7.3.0 20180125 (RTEMS @rtems-ver-major@, RSB e55769c64cf1a201588565a5662deafe3f1ccdcc, Newlib 103b055035fea328f8bc7826801760fb1c055683): 284 objects
Common flags: 4
| -march=armv7-a -mthumb -mfpu=neon -mfloat-abi=hard
diff --git a/user/exe/loader.rst b/user/exe/loader.rst
index c11f363..de77343 100644
--- a/user/exe/loader.rst
+++ b/user/exe/loader.rst
@@ -458,9 +458,9 @@ into the base image.
.. code-block:: none
- $ sparc-rtems5-gcc -mcpu=cypress foo.o -lrtemsbsp -lrtemscpu -o foo.pre
- $ rtems-syms -e -C sparc-rtems5-gcc -c "-mcpu=cypress" -o foo-sym.o foo.pre
- $ sparc-rtems5-gcc -mcpu=cypress foo.o foo-sym.o -lrtemsbsp -lrtemscpu -o foo.exe
+ $ sparc-rtems@rtems-ver-major@-gcc -mcpu=cypress foo.o -lrtemsbsp -lrtemscpu -o foo.pre
+ $ rtems-syms -e -C sparc-rtems@rtems-ver-major@-gcc -c "-mcpu=cypress" -o foo-sym.o foo.pre
+ $ sparc-rtems@rtems-ver-major@-gcc -mcpu=cypress foo.o foo-sym.o -lrtemsbsp -lrtemscpu -o foo.exe
The link command line steps in this example are not complete.
@@ -486,8 +486,8 @@ file. First create the symbol table's executable object file:
.. code-block:: none
- $ sparc-rtems5-gcc -mcpu=cypress foo.o -lrtemsbsp -lrtemscpu -o foo.exe
- $ rtems-syms -C sparc-rtems5-gcc -c "-mcpu=cypress" -o foo-sym.o foo.exe
+ $ sparc-rtems@rtems-ver-major@-gcc -mcpu=cypress foo.o -lrtemsbsp -lrtemscpu -o foo.exe
+ $ rtems-syms -C sparc-rtems@rtems-ver-major@-gcc -c "-mcpu=cypress" -o foo-sym.o foo.exe
The link command line steps in this example are not complete.
@@ -632,7 +632,7 @@ in a library with a single command.
.. code-block:: none
- $ sparc-rtems5-strip libc.a
+ $ sparc-rtems@rtems-ver-major@-strip libc.a
Large Memory
------------