]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/ada/doc/gnat_ugn/building_executable_programs_with_gnat.rst
[Ada] Minor reformattings
[thirdparty/gcc.git] / gcc / ada / doc / gnat_ugn / building_executable_programs_with_gnat.rst
index 6952ee377017231d7435a27870cfda5b2e4166ca..6f1345254625fac0b58a97bc603a4b85352af4dd 100644 (file)
@@ -5,7 +5,7 @@
 
 .. -- Example: A |withing| unit has a |with| clause, it |withs| a |withed| unit
 
-
+.. role:: switch(samp)
 
 .. _Building_Executable_Programs_With_GNAT:
 
@@ -27,11 +27,20 @@ Finally, this chapter provides examples of
 how to make use of the general GNU make mechanism
 in a GNAT context (see :ref:`Using_the_GNU_make_Utility`).
 
+.. only:: PRO or GPL
+
+   For building large systems with components possibly written
+   in different languages (such as Ada, C, C++ and Fortran)
+   and organized into subsystems and libraries, the GPRbuild
+   tool can be used. This tool, and the Project Manager
+   facility that it is based upon, is described in
+   *GPRbuild and GPR Companion Tools User's Guide*.
+
 
 .. _The_GNAT_Make_Program_gnatmake:
 
-Building with *gnatmake*
-========================
+Building with ``gnatmake``
+==========================
 
 .. index:: gnatmake
 
@@ -53,10 +62,10 @@ the following steps:
 The third step in particular can be tricky, because not only do the modified
 files have to be compiled, but any files depending on these files must also be
 recompiled. The dependency rules in Ada can be quite complex, especially
-in the presence of overloading, `use` clauses, generics and inlined
+in the presence of overloading, ``use`` clauses, generics and inlined
 subprograms.
 
-*gnatmake* automatically takes care of the third and fourth steps
+``gnatmake`` automatically takes care of the third and fourth steps
 of this process. It determines which sources need to be compiled,
 compiles them, and binds and links the resulting object files.
 
@@ -65,84 +74,85 @@ accurately recomputed from the new sources. The source based approach of
 the GNAT compilation model makes this possible. This means that if
 changes to the source program cause corresponding changes in
 dependencies, they will always be tracked exactly correctly by
-*gnatmake*.
+``gnatmake``.
 
-Note that for advanced description of project structure, we recommend creating
-a project file as explained in :ref:`GNAT_Project_Manager` and use the
-*gprbuild* tool which supports building with project files and works similarly
-to *gnatmake*.
+Note that for advanced forms of project structure, we recommend creating
+a project file as explained in the *GNAT_Project_Manager* chapter in the
+*GPRbuild User's Guide*, and using the
+``gprbuild`` tool which supports building with project files and works similarly
+to ``gnatmake``.
 
 .. _Running_gnatmake:
 
-Running *gnatmake*
-------------------
+Running ``gnatmake``
+--------------------
 
-The usual form of the *gnatmake* command is
+The usual form of the ``gnatmake`` command is
 
 .. code-block:: sh
 
      $ gnatmake [<switches>] <file_name> [<file_names>] [<mode_switches>]
 
-The only required argument is one `file_name`, which specifies
-a compilation unit that is a main program. Several `file_names` can be
+The only required argument is one ``file_name``, which specifies
+a compilation unit that is a main program. Several ``file_names`` can be
 specified: this will result in several executables being built.
-If `switches` are present, they can be placed before the first
-`file_name`, between `file_names` or after the last `file_name`.
-If `mode_switches` are present, they must always be placed after
-the last `file_name` and all `switches`.
+If ``switches`` are present, they can be placed before the first
+``file_name``, between ``file_names`` or after the last ``file_name``.
+If ``mode_switches`` are present, they must always be placed after
+the last ``file_name`` and all ``switches``.
 
 If you are using standard file extensions (:file:`.adb` and
 :file:`.ads`), then the
-extension may be omitted from the `file_name` arguments. However, if
+extension may be omitted from the ``file_name`` arguments. However, if
 you are using non-standard extensions, then it is required that the
 extension be given. A relative or absolute directory path can be
-specified in a `file_name`, in which case, the input source file will
+specified in a ``file_name``, in which case, the input source file will
 be searched for in the specified directory only. Otherwise, the input
 source file will first be searched in the directory where
-*gnatmake* was invoked and if it is not found, it will be search on
+``gnatmake`` was invoked and if it is not found, it will be search on
 the source path of the compiler as described in
 :ref:`Search_Paths_and_the_Run-Time_Library_RTL`.
 
-All *gnatmake* output (except when you specify *-M*) is sent to
+All ``gnatmake`` output (except when you specify :switch:`-M`) is sent to
 :file:`stderr`. The output produced by the
-*-M* switch is sent to :file:`stdout`.
+:switch:`-M` switch is sent to :file:`stdout`.
 
 
 .. _Switches_for_gnatmake:
 
-Switches for *gnatmake*
------------------------
+Switches for ``gnatmake``
+-------------------------
 
-You may specify any of the following switches to *gnatmake*:
+You may specify any of the following switches to ``gnatmake``:
 
 
 .. index:: --version  (gnatmake)
 
-:samp:`--version`
+:switch:`--version`
   Display Copyright and version, then exit disregarding all other options.
 
 
 .. index:: --help  (gnatmake)
 
-:samp:`--help`
+:switch:`--help`
   If ``--version`` was not used, display usage, then exit disregarding
   all other options.
 
 
 .. index:: --GCC=compiler_name  (gnatmake)
 
-:samp:`--GCC={compiler_name}`
+:switch:`--GCC={compiler_name}`
   Program used for compiling. The default is ``gcc``. You need to use
-  quotes around `compiler_name` if `compiler_name` contains
+  quotes around ``compiler_name`` if ``compiler_name`` contains
   spaces or other separator characters.
   As an example ``--GCC="foo -x  -y"``
-  will instruct *gnatmake* to use ``foo -x -y`` as your
+  will instruct ``gnatmake`` to use ``foo -x -y`` as your
   compiler. A limitation of this syntax is that the name and path name of
   the executable itself must not include any embedded spaces. Note that
-  switch ``-c`` is always inserted after your command name. Thus in the
-  above example the compiler command that will be used by *gnatmake*
+  switch :switch:`-c` is always inserted after your command name. Thus in the
+  above example the compiler command that will be used by ``gnatmake``
   will be ``foo -c -x -y``. If several ``--GCC=compiler_name`` are
-  used, only the last `compiler_name` is taken into account. However,
+  used, only the last ``compiler_name`` is taken into account. However,
   all the additional switches are also taken into account. Thus,
   ``--GCC="foo -x -y" --GCC="bar -z -t"`` is equivalent to
   ``--GCC="bar -x -y -z -t"``.
@@ -150,58 +160,58 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: --GNATBIND=binder_name  (gnatmake)
 
-:samp:`--GNATBIND={binder_name}`
+:switch:`--GNATBIND={binder_name}`
   Program used for binding. The default is ``gnatbind``. You need to
-  use quotes around `binder_name` if `binder_name` contains spaces
+  use quotes around ``binder_name`` if ``binder_name`` contains spaces
   or other separator characters.
   As an example ``--GNATBIND="bar -x  -y"``
-  will instruct *gnatmake* to use `bar -x -y` as your
-  binder. Binder switches that are normally appended by *gnatmake*
-  to ``gnatbind`` are now appended to the end of `bar -x -y`.
+  will instruct ``gnatmake`` to use ``bar -x -y`` as your
+  binder. Binder switches that are normally appended by ``gnatmake``
+  to ``gnatbind`` are now appended to the end of ``bar -x -y``.
   A limitation of this syntax is that the name and path name of the executable
   itself must not include any embedded spaces.
 
 .. index:: --GNATLINK=linker_name  (gnatmake)
 
-:samp:`--GNATLINK={linker_name}`
+:switch:`--GNATLINK={linker_name}`
   Program used for linking. The default is ``gnatlink``. You need to
-  use quotes around `linker_name` if `linker_name` contains spaces
+  use quotes around ``linker_name`` if ``linker_name`` contains spaces
   or other separator characters.
   As an example ``--GNATLINK="lan -x  -y"``
-  will instruct *gnatmake* to use ``lan -x -y`` as your
+  will instruct ``gnatmake`` to use ``lan -x -y`` as your
   linker. Linker switches that are normally appended by ``gnatmake`` to
   ``gnatlink`` are now appended to the end of ``lan -x -y``.
   A limitation of this syntax is that the name and path name of the executable
   itself must not include any embedded spaces.
 
-:samp:`--create-map-file`
+:switch:`--create-map-file`
   When linking an executable, create a map file. The name of the map file
   has the same name as the executable with extension ".map".
 
-:samp:`--create-map-file={mapfile}`
+:switch:`--create-map-file={mapfile}`
   When linking an executable, create a map file with the specified name.
 
 .. index:: --create-missing-dirs  (gnatmake)
 
-:samp:`--create-missing-dirs`
-  When using project files (:samp:`-P{project}`), automatically create
+:switch:`--create-missing-dirs`
+  When using project files (:switch:`-P{project}`), automatically create
   missing object directories, library directories and exec
   directories.
 
-:samp:`--single-compile-per-obj-dir`
+:switch:`--single-compile-per-obj-dir`
   Disallow simultaneous compilations in the same object directory when
   project files are used.
 
-:samp:`--subdirs={subdir}`
+:switch:`--subdirs={subdir}`
   Actual object directory of each project file is the subdirectory subdir of the
   object directory specified or defaulted in the project file.
 
-:samp:`--unchecked-shared-lib-imports`
+:switch:`--unchecked-shared-lib-imports`
   By default, shared library projects are not allowed to import static library
   projects. When this switch is used on the command line, this restriction is
   relaxed.
 
-:samp:`--source-info={source info file}`
+:switch:`--source-info={source info file}`
   Specify a source info file. This switch is active only when project files
   are used. If the source info file is specified as a relative path, then it is
   relative to the object directory of the main project. If the source info file
@@ -214,19 +224,19 @@ You may specify any of the following switches to *gnatmake*:
   long time. If the source info file exists but cannot be parsed successfully,
   the Project Manager will attempt to recreate it. If the Project Manager fails
   to create the source info file, a message is issued, but gnatmake does not
-  fail. *gnatmake* "trusts" the source info file. This means that
+  fail. ``gnatmake`` "trusts" the source info file. This means that
   if the source files have changed (addition, deletion, moving to a different
   source directory), then the source info file need to be deleted and recreated.
 
 
 .. index:: -a  (gnatmake)
 
-:samp:`-a`
+:switch:`-a`
   Consider all files in the make process, even the GNAT internal system
   files (for example, the predefined Ada library files), as well as any
   locked files. Locked files are files whose ALI file is write-protected.
   By default,
-  *gnatmake* does not check these files,
+  ``gnatmake`` does not check these files,
   because the assumption is that the GNAT internal files are properly up
   to date, and also that any write protected ALI files have been properly
   installed. Note that if there is an installation problem, such that one
@@ -237,7 +247,7 @@ You may specify any of the following switches to *gnatmake*:
   in conjunction with ``-f``
   if you need to recompile an entire application,
   including run-time files, using special configuration pragmas,
-  such as a `Normalize_Scalars` pragma.
+  such as a ``Normalize_Scalars`` pragma.
 
   By default
   ``gnatmake -a`` compiles all GNAT
@@ -247,52 +257,52 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -b  (gnatmake)
 
-:samp:`-b`
-  Bind only. Can be combined with *-c* to do
+:switch:`-b`
+  Bind only. Can be combined with :switch:`-c` to do
   compilation and binding, but no link.
-  Can be combined with *-l*
+  Can be combined with :switch:`-l`
   to do binding and linking. When not combined with
-  *-c*
+  :switch:`-c`
   all the units in the closure of the main program must have been previously
-  compiled and must be up to date. The root unit specified by `file_name`
+  compiled and must be up to date. The root unit specified by ``file_name``
   may be given without extension, with the source extension or, if no GNAT
   Project File is specified, with the ALI file extension.
 
 
 .. index:: -c  (gnatmake)
 
-:samp:`-c`
-  Compile only. Do not perform binding, except when *-b*
+:switch:`-c`
+  Compile only. Do not perform binding, except when :switch:`-b`
   is also specified. Do not perform linking, except if both
-  *-b* and
-  *-l* are also specified.
-  If the root unit specified by `file_name` is not a main unit, this is the
-  default. Otherwise *gnatmake* will attempt binding and linking
+  :switch:`-b` and
+  :switch:`-l` are also specified.
+  If the root unit specified by ``file_name`` is not a main unit, this is the
+  default. Otherwise ``gnatmake`` will attempt binding and linking
   unless all objects are up to date and the executable is more recent than
   the objects.
 
 
 .. index:: -C  (gnatmake)
 
-:samp:`-C`
+:switch:`-C`
   Use a temporary mapping file. A mapping file is a way to communicate
   to the compiler two mappings: from unit names to file names (without
   any directory information) and from file names to path names (with
   full directory information). A mapping file can make the compiler's
   file searches faster, especially if there are many source directories,
   or the sources are read over a slow network connection. If
-  *-P* is used, a mapping file is always used, so
-  *-C* is unnecessary; in this case the mapping file
+  :switch:`-P` is used, a mapping file is always used, so
+  :switch:`-C` is unnecessary; in this case the mapping file
   is initially populated based on the project file. If
-  *-C* is used without
-  *-P*,
+  :switch:`-C` is used without
+  :switch:`-P`,
   the mapping file is initially empty. Each invocation of the compiler
   will add any newly accessed sources to the mapping file.
 
 
 .. index:: -C=  (gnatmake)
 
-:samp:`-C={file}`
+:switch:`-C={file}`
   Use a specific mapping file. The file, specified as a path name (absolute or
   relative) by this switch, should already exist, otherwise the switch is
   ineffective. The specified mapping file will be communicated to the compiler.
@@ -303,7 +313,7 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -d  (gnatmake)
 
-:samp:`-d`
+:switch:`-d`
   Display progress for each source, up to date or not, as a single line:
 
   ::
@@ -316,9 +326,9 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -D  (gnatmake)
 
-:samp:`-D {dir}`
-  Put all object files and ALI file in directory `dir`.
-  If the *-D* switch is not used, all object files
+:switch:`-D {dir}`
+  Put all object files and ALI file in directory ``dir``.
+  If the :switch:`-D` switch is not used, all object files
   and ALI files go in the current working directory.
 
   This switch cannot be used when using a project file.
@@ -326,17 +336,17 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -eI  (gnatmake)
 
-:samp:`-eI{nnn}`
+:switch:`-eI{nnn}`
   Indicates that the main source is a multi-unit source and the rank of the unit
   in the source file is nnn. nnn needs to be a positive number and a valid
-  index in the source. This switch cannot be used when *gnatmake* is
+  index in the source. This switch cannot be used when ``gnatmake`` is
   invoked for several mains.
 
 
 .. index:: -eL  (gnatmake)
 .. index:: symbolic links
 
-:samp:`-eL`
+:switch:`-eL`
   Follow all symbolic links when processing project files.
   This should be used if your project uses symbolic links for files or
   directories, but is not needed in other cases.
@@ -355,7 +365,7 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -eS  (gnatmake)
 
-:samp:`-eS`
+:switch:`-eS`
   Output the commands for the compiler, the binder and the linker
   on standard output,
   instead of standard error.
@@ -363,16 +373,16 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -f  (gnatmake)
 
-:samp:`-f`
+:switch:`-f`
   Force recompilations. Recompile all sources, even though some object
   files may be up to date, but don't recompile predefined or GNAT internal
   files or locked files (files with a write-protected ALI file),
-  unless the *-a* switch is also specified.
+  unless the :switch:`-a` switch is also specified.
 
 
 .. index:: -F  (gnatmake)
 
-:samp:`-F`
+:switch:`-F`
   When using project files, if some errors or warnings are detected during
   parsing and verbose mode is not in effect (no use of switch
   -v), then error lines start with the full path name of the project
@@ -381,26 +391,26 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -g  (gnatmake)
 
-:samp:`-g`
+:switch:`-g`
   Enable debugging. This switch is simply passed to the compiler and to the
   linker.
 
 
 .. index:: -i  (gnatmake)
 
-:samp:`-i`
-  In normal mode, *gnatmake* compiles all object files and ALI files
-  into the current directory. If the *-i* switch is used,
+:switch:`-i`
+  In normal mode, ``gnatmake`` compiles all object files and ALI files
+  into the current directory. If the :switch:`-i` switch is used,
   then instead object files and ALI files that already exist are overwritten
   in place. This means that once a large project is organized into separate
-  directories in the desired manner, then *gnatmake* will automatically
+  directories in the desired manner, then ``gnatmake`` will automatically
   maintain and update this organization. If no ALI files are found on the
   Ada object path (see :ref:`Search_Paths_and_the_Run-Time_Library_RTL`),
   the new object and ALI files are created in the
   directory containing the source being compiled. If another organization
   is desired, where objects and sources are kept in different directories,
   a useful technique is to create dummy ALI files in the desired directories.
-  When detecting such a dummy file, *gnatmake* will be forced to
+  When detecting such a dummy file, ``gnatmake`` will be forced to
   recompile the corresponding source file, and it will be put the resulting
   object and ALI files in the directory where it found the dummy file.
 
@@ -408,57 +418,57 @@ You may specify any of the following switches to *gnatmake*:
 .. index:: -j  (gnatmake)
 .. index:: Parallel make
 
-:samp:`-j{n}`
-  Use `n` processes to carry out the (re)compilations. On a multiprocessor
-  machine compilations will occur in parallel. If `n` is 0, then the
+:switch:`-j{n}`
+  Use ``n`` processes to carry out the (re)compilations. On a multiprocessor
+  machine compilations will occur in parallel. If ``n`` is 0, then the
   maximum number of parallel compilations is the number of core processors
   on the platform. In the event of compilation errors, messages from various
-  compilations might get interspersed (but *gnatmake* will give you the
+  compilations might get interspersed (but ``gnatmake`` will give you the
   full ordered list of failing compiles at the end). If this is problematic,
   rerun the make process with n set to 1 to get a clean list of messages.
 
 
 .. index:: -k  (gnatmake)
 
-:samp:`-k`
+:switch:`-k`
   Keep going. Continue as much as possible after a compilation error. To
   ease the programmer's task in case of compilation errors, the list of
-  sources for which the compile fails is given when *gnatmake*
+  sources for which the compile fails is given when ``gnatmake``
   terminates.
 
-  If *gnatmake* is invoked with several :file:`file_names` and with this
+  If ``gnatmake`` is invoked with several :file:`file_names` and with this
   switch, if there are compilation errors when building an executable,
-  *gnatmake* will not attempt to build the following executables.
+  ``gnatmake`` will not attempt to build the following executables.
 
 
 .. index:: -l  (gnatmake)
 
-:samp:`-l`
-  Link only. Can be combined with *-b* to binding
+:switch:`-l`
+  Link only. Can be combined with :switch:`-b` to binding
   and linking. Linking will not be performed if combined with
-  *-c*
-  but not with *-b*.
-  When not combined with *-b*
+  :switch:`-c`
+  but not with :switch:`-b`.
+  When not combined with :switch:`-b`
   all the units in the closure of the main program must have been previously
   compiled and must be up to date, and the main program needs to have been bound.
-  The root unit specified by `file_name`
+  The root unit specified by ``file_name``
   may be given without extension, with the source extension or, if no GNAT
   Project File is specified, with the ALI file extension.
 
 
 .. index:: -m  (gnatmake)
 
-:samp:`-m`
+:switch:`-m`
   Specify that the minimum necessary amount of recompilations
-  be performed. In this mode *gnatmake* ignores time
+  be performed. In this mode ``gnatmake`` ignores time
   stamp differences when the only
   modifications to a source file consist in adding/removing comments,
   empty lines, spaces or tabs. This means that if you have changed the
   comments in a source file or have simply reformatted it, using this
-  switch will tell *gnatmake* not to recompile files that depend on it
+  switch will tell ``gnatmake`` not to recompile files that depend on it
   (provided other sources on which these files depend have undergone no
   semantic modifications). Note that the debugging information may be
-  out of date with respect to the sources if the *-m* switch causes
+  out of date with respect to the sources if the :switch:`-m` switch causes
   a compilation to be switched, so the use of this switch represents a
   trade-off between compilation time and accurate debugging information.
 
@@ -466,28 +476,28 @@ You may specify any of the following switches to *gnatmake*:
 .. index:: Dependencies, producing list
 .. index:: -M  (gnatmake)
 
-:samp:`-M`
+:switch:`-M`
   Check if all objects are up to date. If they are, output the object
   dependences to :file:`stdout` in a form that can be directly exploited in
   a :file:`Makefile`. By default, each source file is prefixed with its
   (relative or absolute) directory name. This name is whatever you
-  specified in the various *-aI*
-  and *-I* switches. If you use
-  `gnatmake -M`  *-q*
+  specified in the various :switch:`-aI`
+  and :switch:`-I` switches. If you use
+  ``gnatmake -M``  :switch:`-q`
   (see below), only the source file names,
-  without relative paths, are output. If you just specify the  *-M*
+  without relative paths, are output. If you just specify the  :switch:`-M`
   switch, dependencies of the GNAT internal system files are omitted. This
   is typically what you want. If you also specify
-  the *-a* switch,
+  the :switch:`-a` switch,
   dependencies of the GNAT internal files are also listed. Note that
   dependencies of the objects in external Ada libraries (see
-  switch  :samp:`-aL{dir}` in the following list)
+  switch  :switch:`-aL{dir}` in the following list)
   are never reported.
 
 
 .. index:: -n  (gnatmake)
 
-:samp:`-n`
+:switch:`-n`
   Don't compile, bind, or link. Checks if all objects are up to date.
   If they are not, the full name of the first file that needs to be
   recompiled is printed.
@@ -497,61 +507,65 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -o  (gnatmake)
 
-:samp:`-o {exec_name}`
+:switch:`-o {exec_name}`
   Output executable name. The name of the final executable program will be
-  `exec_name`. If the *-o* switch is omitted the default
+  ``exec_name``. If the :switch:`-o` switch is omitted the default
   name for the executable will be the name of the input file in appropriate form
   for an executable file on the host system.
 
-  This switch cannot be used when invoking *gnatmake* with several
+  This switch cannot be used when invoking ``gnatmake`` with several
   :file:`file_names`.
 
 
 .. index:: -p  (gnatmake)
 
-:samp:`-p`
-  Same as :samp:`--create-missing-dirs`
+:switch:`-p`
+  Same as :switch:`--create-missing-dirs`
 
 .. index:: -P  (gnatmake)
 
-:samp:`-P{project}`
-  Use project file `project`. Only one such switch can be used.
+:switch:`-P{project}`
+  Use project file ``project``. Only one such switch can be used.
+
+.. -- Comment:
   :ref:`gnatmake_and_Project_Files`.
 
 
 .. index:: -q  (gnatmake)
 
-:samp:`-q`
+:switch:`-q`
   Quiet. When this flag is not set, the commands carried out by
-  *gnatmake* are displayed.
+  ``gnatmake`` are displayed.
 
 
 .. index:: -s  (gnatmake)
 
-:samp:`-s`
+:switch:`-s`
   Recompile if compiler switches have changed since last compilation.
   All compiler switches but -I and -o are taken into account in the
   following way:
   orders between different 'first letter' switches are ignored, but
   orders between same switches are taken into account. For example,
-  *-O -O2* is different than *-O2 -O*, but *-g -O*
-  is equivalent to *-O -g*.
+  :switch:`-O -O2` is different than :switch:`-O2 -O`, but :switch:`-g -O`
+  is equivalent to :switch:`-O -g`.
 
   This switch is recommended when Integrated Preprocessing is used.
 
 
 .. index:: -u  (gnatmake)
 
-:samp:`-u`
+:switch:`-u`
   Unique. Recompile at most the main files. It implies -c. Combined with
   -f, it is equivalent to calling the compiler directly. Note that using
-  -u with a project file and no main has a special meaning
-  (:ref:`Project_Files_and_Main_Subprograms`).
+  -u with a project file and no main has a special meaning.
+
+.. --Comment
+  (See :ref:`Project_Files_and_Main_Subprograms`.)
 
 
 .. index:: -U  (gnatmake)
 
-:samp:`-U`
+:switch:`-U`
   When used without a project file or with one or several mains on the command
   line, is equivalent to -u. When used with a project file and no main
   on the command line, all sources of all project files are checked and compiled
@@ -560,57 +574,57 @@ You may specify any of the following switches to *gnatmake*:
 
 .. index:: -v  (gnatmake)
 
-:samp:`-v`
-  Verbose. Display the reason for all recompilations *gnatmake*
+:switch:`-v`
+  Verbose. Display the reason for all recompilations ``gnatmake``
   decides are necessary, with the highest verbosity level.
 
 
 .. index:: -vl  (gnatmake)
 
-:samp:`-vl`
+:switch:`-vl`
   Verbosity level Low. Display fewer lines than in verbosity Medium.
 
 
 .. index:: -vm  (gnatmake)
 
-:samp:`-vm`
+:switch:`-vm`
   Verbosity level Medium. Potentially display fewer lines than in verbosity High.
 
 
 .. index:: -vm  (gnatmake)
 
-:samp:`-vh`
+:switch:`-vh`
   Verbosity level High. Equivalent to -v.
 
 
-:samp:`-vP{x}`
+:switch:`-vP{x}`
   Indicate the verbosity of the parsing of GNAT project files.
   See :ref:`Switches_Related_to_Project_Files`.
 
 
 .. index:: -x  (gnatmake)
 
-:samp:`-x`
+:switch:`-x`
   Indicate that sources that are not part of any Project File may be compiled.
   Normally, when using Project Files, only sources that are part of a Project
   File may be compile. When this switch is used, a source outside of all Project
   Files may be compiled. The ALI file and the object file will be put in the
   object directory of the main Project. The compilation switches used will only
   be those specified on the command line. Even when
-  *-x* is used, mains specified on the
+  :switch:`-x` is used, mains specified on the
   command line need to be sources of a project file.
 
 
-:samp:`-X{name}={value}`
-  Indicate that external variable `name` has the value `value`.
+:switch:`-X{name}={value}`
+  Indicate that external variable ``name`` has the value ``value``.
   The Project Manager will use this value for occurrences of
-  `external(name)` when parsing the project file.
+  ``external(name)`` when parsing the project file.
   :ref:`Switches_Related_to_Project_Files`.
 
 
 .. index:: -z  (gnatmake)
 
-:samp:`-z`
+:switch:`-z`
   No main subprogram. Bind and link the program even if the unit name
   given on the command line is a package name. The resulting executable
   will execute the elaboration routines of the package and its closure,
@@ -619,96 +633,96 @@ You may specify any of the following switches to *gnatmake*:
 
 .. rubric:: GCC switches
 
-Any uppercase or multi-character switch that is not a *gnatmake* switch
-is passed to *gcc* (e.g., *-O*, *-gnato,* etc.)
+Any uppercase or multi-character switch that is not a ``gnatmake`` switch
+is passed to ``gcc`` (e.g., :switch:`-O`, :switch:`-gnato,` etc.)
 
 
 .. rubric:: Source and library search path switches
 
 .. index:: -aI  (gnatmake)
 
-:samp:`-aI{dir}`
-  When looking for source files also look in directory `dir`.
+:switch:`-aI{dir}`
+  When looking for source files also look in directory ``dir``.
   The order in which source files search is undertaken is
   described in :ref:`Search_Paths_and_the_Run-Time_Library_RTL`.
 
 
 .. index:: -aL  (gnatmake)
 
-:samp:`-aL{dir}`
-  Consider `dir` as being an externally provided Ada library.
-  Instructs *gnatmake* to skip compilation units whose :file:`.ALI`
-  files have been located in directory `dir`. This allows you to have
-  missing bodies for the units in `dir` and to ignore out of date bodies
+:switch:`-aL{dir}`
+  Consider ``dir`` as being an externally provided Ada library.
+  Instructs ``gnatmake`` to skip compilation units whose :file:`.ALI`
+  files have been located in directory ``dir``. This allows you to have
+  missing bodies for the units in ``dir`` and to ignore out of date bodies
   for the same units. You still need to specify
   the location of the specs for these units by using the switches
-  :samp:`-aI{dir}`  or :samp:`-I{dir}`.
+  :switch:`-aI{dir}`  or :switch:`-I{dir}`.
   Note: this switch is provided for compatibility with previous versions
-  of *gnatmake*. The easier method of causing standard libraries
+  of ``gnatmake``. The easier method of causing standard libraries
   to be excluded from consideration is to write-protect the corresponding
   ALI files.
 
 
 .. index:: -aO  (gnatmake)
 
-:samp:`-aO{dir}`
+:switch:`-aO{dir}`
   When searching for library and object files, look in directory
-  `dir`. The order in which library files are searched is described in
+  ``dir``. The order in which library files are searched is described in
   :ref:`Search_Paths_for_gnatbind`.
 
 
 .. index:: Search paths, for gnatmake
 .. index:: -A  (gnatmake)
 
-:samp:`-A{dir}`
-  Equivalent to :samp:`-aL{dir}` :samp:`-aI{dir}`.
+:switch:`-A{dir}`
+  Equivalent to :switch:`-aL{dir}` :switch:`-aI{dir}`.
 
 
   .. index:: -I  (gnatmake)
 
-:samp:`-I{dir}`
-  Equivalent to :samp:`-aO{dir} -aI{dir}`.
+:switch:`-I{dir}`
+  Equivalent to :switch:`-aO{dir} -aI{dir}`.
 
 
 .. index:: -I-  (gnatmake)
 .. index:: Source files, suppressing search
 
-:samp:`-I-`
+:switch:`-I-`
   Do not look for source files in the directory containing the source
   file named in the command line.
   Do not look for ALI or object files in the directory
-  where *gnatmake* was invoked.
+  where ``gnatmake`` was invoked.
 
 
 .. index:: -L  (gnatmake)
 .. index:: Linker libraries
 
-:samp:`-L{dir}`
-  Add directory `dir` to the list of directories in which the linker
+:switch:`-L{dir}`
+  Add directory ``dir`` to the list of directories in which the linker
   will search for libraries. This is equivalent to
-  :samp:`-largs` :samp:`-L{dir}`.
+  :switch:`-largs` :switch:`-L{dir}`.
   Furthermore, under Windows, the sources pointed to by the libraries path
   set in the registry are not searched for.
 
 
 .. index:: -nostdinc  (gnatmake)
 
-:samp:`-nostdinc`
+:switch:`-nostdinc`
   Do not look for source files in the system default directory.
 
 
 .. index:: -nostdlib  (gnatmake)
 
-:samp:`-nostdlib`
+:switch:`-nostdlib`
   Do not look for library files in the system default directory.
 
 
 .. index:: --RTS  (gnatmake)
 
-:samp:`--RTS={rts-path}`
-  Specifies the default location of the runtime library. GNAT looks for the
-  runtime
-  in the following directories, and stops as soon as a valid runtime is found
+:switch:`--RTS={rts-path}`
+  Specifies the default location of the run-time library. GNAT looks for the
+  run-time
+  in the following directories, and stops as soon as a valid run-time is found
   (:file:`adainclude` or :file:`ada_source_path`, and :file:`adalib` or
   :file:`ada_object_path` present):
 
@@ -723,10 +737,10 @@ is passed to *gcc* (e.g., *-O*, *-gnato,* etc.)
 
 .. _Mode_Switches_for_gnatmake:
 
-Mode Switches for *gnatmake*
-----------------------------
+Mode Switches for ``gnatmake``
+------------------------------
 
-The mode switches (referred to as `mode_switches`) allow the
+The mode switches (referred to as ``mode_switches``) allow the
 inclusion of switches that are to be passed to the compiler itself, the
 binder or the linker. The effect of a mode switch is to cause all
 subsequent switches up to the end of the switch list, or up to the next
@@ -735,34 +749,34 @@ designated component of GNAT.
 
 .. index:: -cargs  (gnatmake)
 
-:samp:`-cargs {switches}`
-  Compiler switches. Here `switches` is a list of switches
-  that are valid switches for *gcc*. They will be passed on to
-  all compile steps performed by *gnatmake*.
+:switch:`-cargs {switches}`
+  Compiler switches. Here ``switches`` is a list of switches
+  that are valid switches for ``gcc``. They will be passed on to
+  all compile steps performed by ``gnatmake``.
 
 
 .. index:: -bargs  (gnatmake)
 
-:samp:`-bargs {switches}`
-  Binder switches. Here `switches` is a list of switches
-  that are valid switches for `gnatbind`. They will be passed on to
-  all bind steps performed by *gnatmake*.
+:switch:`-bargs {switches}`
+  Binder switches. Here ``switches`` is a list of switches
+  that are valid switches for ``gnatbind``. They will be passed on to
+  all bind steps performed by ``gnatmake``.
 
 
 .. index:: -largs  (gnatmake)
 
-:samp:`-largs {switches}`
-  Linker switches. Here `switches` is a list of switches
-  that are valid switches for *gnatlink*. They will be passed on to
-  all link steps performed by *gnatmake*.
+:switch:`-largs {switches}`
+  Linker switches. Here ``switches`` is a list of switches
+  that are valid switches for ``gnatlink``. They will be passed on to
+  all link steps performed by ``gnatmake``.
 
 
 .. index:: -margs  (gnatmake)
 
-:samp:`-margs {switches}`
-  Make switches. The switches are directly interpreted by *gnatmake*,
-  regardless of any previous occurrence of *-cargs*, *-bargs*
-  or *-largs*.
+:switch:`-margs {switches}`
+  Make switches. The switches are directly interpreted by ``gnatmake``,
+  regardless of any previous occurrence of :switch:`-cargs`, :switch:`-bargs`
+  or :switch:`-largs`.
 
 
 .. _Notes_on_the_Command_Line:
@@ -771,48 +785,48 @@ Notes on the Command Line
 -------------------------
 
 This section contains some additional useful notes on the operation
-of the *gnatmake* command.
+of the ``gnatmake`` command.
 
 .. index:: Recompilation (by gnatmake)
 
-* If *gnatmake* finds no ALI files, it recompiles the main program
+* If ``gnatmake`` finds no ALI files, it recompiles the main program
   and all other units required by the main program.
-  This means that *gnatmake*
+  This means that ``gnatmake``
   can be used for the initial compile, as well as during subsequent steps of
   the development cycle.
 
 * If you enter ``gnatmake foo.adb``, where ``foo``
-  is a subunit or body of a generic unit, *gnatmake* recompiles
+  is a subunit or body of a generic unit, ``gnatmake`` recompiles
   :file:`foo.adb` (because it finds no ALI) and stops, issuing a
   warning.
 
-* In *gnatmake* the switch *-I*
+* In ``gnatmake`` the switch :switch:`-I`
   is used to specify both source and
-  library file paths. Use *-aI*
+  library file paths. Use :switch:`-aI`
   instead if you just want to specify
-  source paths only and *-aO*
+  source paths only and :switch:`-aO`
   if you want to specify library paths
   only.
 
-* *gnatmake* will ignore any files whose ALI file is write-protected.
+* ``gnatmake`` will ignore any files whose ALI file is write-protected.
   This may conveniently be used to exclude standard libraries from
   consideration and in particular it means that the use of the
-  *-f* switch will not recompile these files
-  unless *-a* is also specified.
+  :switch:`-f` switch will not recompile these files
+  unless :switch:`-a` is also specified.
 
-* *gnatmake* has been designed to make the use of Ada libraries
+* ``gnatmake`` has been designed to make the use of Ada libraries
   particularly convenient. Assume you have an Ada library organized
   as follows: *obj-dir* contains the objects and ALI files for
   of your Ada compilation units,
   whereas *include-dir* contains the
   specs of these units, but no bodies. Then to compile a unit
-  stored in `main.adb`, which uses this Ada library you would just type:
+  stored in ``main.adb``, which uses this Ada library you would just type:
 
   .. code-block:: sh
 
       $ gnatmake -aI`include-dir`  -aL`obj-dir`  main
 
-* Using *gnatmake* along with the *-m (minimal recompilation)*
+* Using ``gnatmake`` along with the :switch:`-m (minimal recompilation)`
   switch provides a mechanism for avoiding unnecessary recompilations. Using
   this switch,
   you can update the comments/format of your
@@ -828,12 +842,12 @@ of the *gnatmake* command.
 
 .. _How_gnatmake_Works:
 
-How *gnatmake* Works
---------------------
+How ``gnatmake`` Works
+----------------------
 
-Generally *gnatmake* automatically performs all necessary
+Generally ``gnatmake`` automatically performs all necessary
 recompilations and you don't need to worry about how it works. However,
-it may be useful to have some basic understanding of the *gnatmake*
+it may be useful to have some basic understanding of the ``gnatmake``
 approach and in particular to understand how it uses the results of
 previous compilations without incorrectly depending on them.
 
@@ -844,15 +858,15 @@ the ALI file. This means that neither the source file itself nor any
 files that it depends on have been modified, and hence there is no need
 to recompile this file.
 
-*gnatmake* works by first checking if the specified main unit is up
+``gnatmake`` works by first checking if the specified main unit is up
 to date. If so, no compilations are required for the main unit. If not,
-*gnatmake* compiles the main program to build a new ALI file that
+``gnatmake`` compiles the main program to build a new ALI file that
 reflects the latest sources. Then the ALI file of the main unit is
 examined to find all the source files on which the main program depends,
-and *gnatmake* recursively applies the above procedure on all these
+and ``gnatmake`` recursively applies the above procedure on all these
 files.
 
-This process ensures that *gnatmake* only trusts the dependencies
+This process ensures that ``gnatmake`` only trusts the dependencies
 in an existing ALI file if they are known to be correct. Otherwise it
 always recompiles to determine a new, guaranteed accurate set of
 dependencies. As a result the program is compiled 'upside down' from what may
@@ -860,52 +874,52 @@ be more familiar as the required order of compilation in some other Ada
 systems. In particular, clients are compiled before the units on which
 they depend. The ability of GNAT to compile in any order is critical in
 allowing an order of compilation to be chosen that guarantees that
-*gnatmake* will recompute a correct set of new dependencies if
+``gnatmake`` will recompute a correct set of new dependencies if
 necessary.
 
-When invoking *gnatmake* with several `file_names`, if a unit is
+When invoking ``gnatmake`` with several ``file_names``, if a unit is
 imported by several of the executables, it will be recompiled at most once.
 
 Note: when using non-standard naming conventions
 (:ref:`Using_Other_File_Names`), changing through a configuration pragmas
-file the version of a source and invoking *gnatmake* to recompile may
+file the version of a source and invoking ``gnatmake`` to recompile may
 have no effect, if the previous version of the source is still accessible
-by *gnatmake*. It may be necessary to use the switch
+by ``gnatmake``. It may be necessary to use the switch
 -f.
 
 
 .. _Examples_of_gnatmake_Usage:
 
-Examples of *gnatmake* Usage
-----------------------------
+Examples of ``gnatmake`` Usage
+------------------------------
 
 *gnatmake hello.adb*
   Compile all files necessary to bind and link the main program
-  :file:`hello.adb` (containing unit `Hello`) and bind and link the
+  :file:`hello.adb` (containing unit ``Hello``) and bind and link the
   resulting object files to generate an executable file :file:`hello`.
 
 *gnatmake main1 main2 main3*
   Compile all files necessary to bind and link the main programs
-  :file:`main1.adb` (containing unit `Main1`), :file:`main2.adb`
-  (containing unit `Main2`) and :file:`main3.adb`
-  (containing unit `Main3`) and bind and link the resulting object files
+  :file:`main1.adb` (containing unit ``Main1``), :file:`main2.adb`
+  (containing unit ``Main2``) and :file:`main3.adb`
+  (containing unit ``Main3``) and bind and link the resulting object files
   to generate three executable files :file:`main1`,
   :file:`main2`  and :file:`main3`.
 
 *gnatmake -q Main_Unit -cargs -O2 -bargs -l*
   Compile all files necessary to bind and link the main program unit
-  `Main_Unit` (from file :file:`main_unit.adb`). All compilations will
+  ``Main_Unit`` (from file :file:`main_unit.adb`). All compilations will
   be done with optimization level 2 and the order of elaboration will be
-  listed by the binder. *gnatmake* will operate in quiet mode, not
+  listed by the binder. ``gnatmake`` will operate in quiet mode, not
   displaying commands it is executing.
 
 
 .. _Compiling_with_gcc:
 
-Compiling with *gcc*
-====================
+Compiling with ``gcc``
+======================
 
-This section discusses how to compile Ada programs using the *gcc*
+This section discusses how to compile Ada programs using the ``gcc``
 command. It also describes the set of switches
 that can be used to control the behavior of the compiler.
 
@@ -915,7 +929,7 @@ Compiling Programs
 ------------------
 
 The first step in creating an executable program is to compile the units
-of the program using the *gcc* command. You must compile the
+of the program using the ``gcc`` command. You must compile the
 following files:
 
 * the body file (:file:`.adb`) for a library level subprogram or generic
@@ -941,27 +955,27 @@ compiled.
 .. index:: cannot generate code
 
 If you attempt to compile any of these files, you will get one of the
-following error messages (where `fff` is the name of the file you
+following error messages (where ``fff`` is the name of the file you
 compiled):
 
   ::
 
-    cannot generate code for file `fff` (package spec)
+    cannot generate code for file ``fff`` (package spec)
     to check package spec, use -gnatc
 
-    cannot generate code for file `fff` (missing subunits)
+    cannot generate code for file ``fff`` (missing subunits)
     to check parent unit, use -gnatc
 
-    cannot generate code for file `fff` (subprogram spec)
+    cannot generate code for file ``fff`` (subprogram spec)
     to check subprogram spec, use -gnatc
 
-    cannot generate code for file `fff` (subunit)
+    cannot generate code for file ``fff`` (subunit)
     to check subunit, use -gnatc
 
 
 As indicated by the above error messages, if you want to submit
 one of these files to the compiler to check for correct semantics
-without generating code, then use the *-gnatc* switch.
+without generating code, then use the :switch:`-gnatc` switch.
 
 The basic command for compiling a file containing an Ada unit is:
 
@@ -969,10 +983,10 @@ The basic command for compiling a file containing an Ada unit is:
 
   $ gcc -c [switches] <file name>
 
-where `file name` is the name of the Ada file (usually
+where ``file name`` is the name of the Ada file (usually
 having an extension :file:`.ads` for a spec or :file:`.adb` for a body).
 You specify the
-:option:`-c` switch to tell *gcc* to compile, but not link, the file.
+:switch:`-c` switch to tell ``gcc`` to compile, but not link, the file.
 The result of a successful compilation is an object file, which has the
 same name as the source file but an extension of :file:`.o` and an Ada
 Library Information (ALI) file, which also has the same name as the
@@ -981,19 +995,21 @@ two output files in the current directory, but you may specify a source
 file in any directory using an absolute or relative path specification
 containing the directory information.
 
+TESTING: the :switch:`--foobar{NN}` switch
+
 .. index::  gnat1
 
-*gcc* is actually a driver program that looks at the extensions of
+``gcc`` is actually a driver program that looks at the extensions of
 the file arguments and loads the appropriate compiler. For example, the
 GNU C compiler is :file:`cc1`, and the Ada compiler is :file:`gnat1`.
 These programs are in directories known to the driver program (in some
 configurations via environment variables you set), but need not be in
-your path. The *gcc* driver also calls the assembler and any other
+your path. The ``gcc`` driver also calls the assembler and any other
 utilities needed to complete the generation of the required object
 files.
 
-It is possible to supply several file names on the same *gcc*
-command. This causes *gcc* to call the appropriate compiler for
+It is possible to supply several file names on the same ``gcc``
+command. This causes ``gcc`` to call the appropriate compiler for
 each file. For example, the following command lists two separate
 files to be compiled:
 
@@ -1002,13 +1018,13 @@ files to be compiled:
   $ gcc -c x.adb y.adb
 
 
-calls `gnat1` (the Ada compiler) twice to compile :file:`x.adb` and
+calls ``gnat1`` (the Ada compiler) twice to compile :file:`x.adb` and
 :file:`y.adb`.
 The compiler generates two object files :file:`x.o` and :file:`y.o`
 and the two ALI files :file:`x.ali` and :file:`y.ali`.
 
 Any switches apply to all the files listed, see :ref:`Switches_for_gcc` for a
-list of available *gcc* switches.
+list of available ``gcc`` switches.
 
 .. _Search_Paths_and_the_Run-Time_Library_RTL:
 
@@ -1028,7 +1044,7 @@ directories, in the following order:
 * The directory containing the source file of the main unit being compiled
   (the file name on the command line).
 
-* Each directory named by an *-I* switch given on the *gcc*
+* Each directory named by an :switch:`-I` switch given on the ``gcc``
   command line, in the order given.
 
   .. index:: ADA_PRJ_INCLUDE_FILE
@@ -1052,37 +1068,37 @@ directories, in the following order:
   GNAT Run Time Library (RTL) source files.
   :ref:`Installing_a_library`
 
-Specifying the switch *-I-*
+Specifying the switch :switch:`-I-`
 inhibits the use of the directory
 containing the source file named in the command line. You can still
 have this directory on your search path, but in this case it must be
-explicitly requested with a *-I* switch.
+explicitly requested with a :switch:`-I` switch.
 
-Specifying the switch *-nostdinc*
+Specifying the switch :switch:`-nostdinc`
 inhibits the search of the default location for the GNAT Run Time
 Library (RTL) source files.
 
 The compiler outputs its object files and ALI files in the current
 working directory.
-Caution: The object file can be redirected with the *-o* switch;
-however, *gcc* and `gnat1` have not been coordinated on this
+Caution: The object file can be redirected with the :switch:`-o` switch;
+however, ``gcc`` and ``gnat1`` have not been coordinated on this
 so the :file:`ALI` file will not go to the right place. Therefore, you should
-avoid using the *-o* switch.
+avoid using the :switch:`-o` switch.
 
 .. index:: System.IO
 
-The packages `Ada`, `System`, and `Interfaces` and their
-children make up the GNAT RTL, together with the simple `System.IO`
-package used in the `"Hello World"` example. The sources for these units
+The packages ``Ada``, ``System``, and ``Interfaces`` and their
+children make up the GNAT RTL, together with the simple ``System.IO``
+package used in the ``"Hello World"`` example. The sources for these units
 are needed by the compiler and are kept together in one directory. Not
 all of the bodies are needed, but all of the sources are kept together
 anyway. In a normal installation, you need not specify these directory
 names when compiling or binding. Either the environment variables or
 the built-in defaults cause these files to be found.
 
-In addition to the language-defined hierarchies (`System`, `Ada` and
-`Interfaces`), the GNAT distribution provides a fourth hierarchy,
-consisting of child units of `GNAT`. This is a collection of generally
+In addition to the language-defined hierarchies (``System``, ``Ada`` and
+``Interfaces``), the GNAT distribution provides a fourth hierarchy,
+consisting of child units of ``GNAT``. This is a collection of generally
 useful types, subprograms, etc. See the :title:`GNAT_Reference_Manual`
 for further details.
 
@@ -1095,7 +1111,7 @@ development environments much more flexible.
 Order of Compilation Issues
 ---------------------------
 
-If, in our earlier example, there was a spec for the `hello`
+If, in our earlier example, there was a spec for the ``hello``
 procedure, it would be contained in the file :file:`hello.ads`; yet this
 file would not have to be explicitly compiled. This is the result of the
 model we chose to implement library management. Some of the consequences
@@ -1141,7 +1157,7 @@ Compile body in file :file:`xyz.adb` with all default options.
     $ gcc -c -O2 -gnata xyz-def.adb
 
 Compile the child unit package in file :file:`xyz-def.adb` with extensive
-optimizations, and pragma `Assert`/`Debug` statements
+optimizations, and pragma ``Assert``/`Debug` statements
 enabled.
 
 .. code-block:: sh
@@ -1157,7 +1173,7 @@ mode.
 Compiler Switches
 =================
 
-The *gcc* command accepts switches that control the
+The ``gcc`` command accepts switches that control the
 compilation process. These switches are fully described in this section:
 first an alphabetical listing of all switches with a brief description,
 and then functionally grouped sets of switches with more detailed
@@ -1176,122 +1192,121 @@ Alphabetical List of All Switches
 
 .. index:: -b  (gcc)
 
-:samp:`-b {target}`
-  Compile your program to run on `target`, which is the name of a
+:switch:`-b {target}`
+  Compile your program to run on ``target``, which is the name of a
   system configuration. You must have a GNAT cross-compiler built if
-  `target` is not the same as your host system.
+  ``target`` is not the same as your host system.
 
 
 .. index:: -B  (gcc)
 
-:samp:`-B{dir}`
-  Load compiler executables (for example, `gnat1`, the Ada compiler)
-  from `dir` instead of the default location. Only use this switch
+:switch:`-B{dir}`
+  Load compiler executables (for example, ``gnat1``, the Ada compiler)
+  from ``dir`` instead of the default location. Only use this switch
   when multiple versions of the GNAT compiler are available.
   See the "Options for Directory Search" section in the
   :title:`Using the GNU Compiler Collection (GCC)` manual for further details.
-  You would normally use the *-b* or *-V* switch instead.
+  You would normally use the :switch:`-b` or :switch:`-V` switch instead.
 
 .. index:: -c  (gcc)
 
-:samp:`-c`
+:switch:`-c`
   Compile. Always use this switch when compiling Ada programs.
 
-  Note: for some other languages when using *gcc*, notably in
+  Note: for some other languages when using ``gcc``, notably in
   the case of C and C++, it is possible to use
-  use *gcc* without a *-c* switch to
+  use ``gcc`` without a :switch:`-c` switch to
   compile and link in one step. In the case of GNAT, you
   cannot use this approach, because the binder must be run
-  and *gcc* cannot be used to run the GNAT binder.
+  and ``gcc`` cannot be used to run the GNAT binder.
 
 
 .. index:: -fcallgraph-info  (gcc)
 
-:samp:`-fcallgraph-info[=su,da]`
+:switch:`-fcallgraph-info[=su,da]`
   Makes the compiler output callgraph information for the program, on a
   per-file basis. The information is generated in the VCG format.  It can
   be decorated with additional, per-node and/or per-edge information, if a
   list of comma-separated markers is additionally specified. When the
-  `su` marker is specified, the callgraph is decorated with stack usage
-  information; it is equivalent to *-fstack-usage*. When the `da`
+  ``su`` marker is specified, the callgraph is decorated with stack usage
+  information; it is equivalent to :switch:`-fstack-usage`. When the ``da``
   marker is specified, the callgraph is decorated with information about
   dynamically allocated objects.
 
 
 .. index:: -fdump-scos  (gcc)
 
-:samp:`-fdump-scos`
+:switch:`-fdump-scos`
   Generates SCO (Source Coverage Obligation) information in the ALI file.
   This information is used by advanced coverage tools. See unit :file:`SCOs`
   in the compiler sources for details in files :file:`scos.ads` and
   :file:`scos.adb`.
 
 
-.. index:: -fdump-xref  (gcc)
+.. index:: -fgnat-encodings  (gcc)
 
-:samp:`-fdump-xref`
-  Generates cross reference information in GLI files for C and C++ sources.
-  The GLI files have the same syntax as the ALI files for Ada, and can be used
-  for source navigation in IDEs and on the command line using e.g. gnatxref
-  and the *--ext=gli* switch.
+:switch:`-fgnat-encodings=[all|gdb|minimal]`
+  This switch controls the balance between GNAT encodings and standard DWARF
+  emitted in the debug information.
 
 
 .. index:: -flto  (gcc)
 
-:samp:`-flto[={n}]`
+:switch:`-flto[={n}]`
   Enables Link Time Optimization. This switch must be used in conjunction
-  with the traditional *-Ox* switches and instructs the compiler to
-  defer most optimizations until the link stage. The advantage of this
+  with the :switch:`-Ox` switches (but not with the :switch:`-gnatn` switch
+  since it is a full replacement for the latter) and instructs the compiler
+  to defer most optimizations until the link stage. The advantage of this
   approach is that the compiler can do a whole-program analysis and choose
   the best interprocedural optimization strategy based on a complete view
   of the program, instead of a fragmentary view with the usual approach.
   This can also speed up the compilation of big programs and reduce the
   size of the executable, compared with a traditional per-unit compilation
-  with inlining across modules enabled by the *-gnatn* switch.
+  with inlining across units enabled by the :switch:`-gnatn` switch.
   The drawback of this approach is that it may require more memory and that
   the debugging information generated by -g with it might be hardly usable.
-  The switch, as well as the accompanying *-Ox* switches, must be
+  The switch, as well as the accompanying :switch:`-Ox` switches, must be
   specified both for the compilation and the link phases.
-  If the `n` parameter is specified, the optimization and final code
-  generation at link time are executed using `n` parallel jobs by
-  means of an installed *make* program.
+  If the ``n`` parameter is specified, the optimization and final code
+  generation at link time are executed using ``n`` parallel jobs by
+  means of an installed ``make`` program.
 
 
 .. index:: -fno-inline  (gcc)
 
-:samp:`-fno-inline`
-  Suppresses all inlining, unless requested with pragma `Inline_Always`. The
+:switch:`-fno-inline`
+  Suppresses all inlining, unless requested with pragma ``Inline_Always``. The
   effect is enforced regardless of other optimization or inlining switches.
   Note that inlining can also be suppressed on a finer-grained basis with
-  pragma `No_Inline`.
+  pragma ``No_Inline``.
 
 
 .. index:: -fno-inline-functions  (gcc)
 
-:samp:`-fno-inline-functions`
+:switch:`-fno-inline-functions`
   Suppresses automatic inlining of subprograms, which is enabled
-  if *-O3* is used.
+  if :switch:`-O3` is used.
 
 
 .. index:: -fno-inline-small-functions  (gcc)
 
-:samp:`-fno-inline-small-functions`
+:switch:`-fno-inline-small-functions`
   Suppresses automatic inlining of small subprograms, which is enabled
-  if *-O2* is used.
+  if :switch:`-O2` is used.
 
 
 .. index:: -fno-inline-functions-called-once  (gcc)
 
-:samp:`-fno-inline-functions-called-once`
+:switch:`-fno-inline-functions-called-once`
   Suppresses inlining of subprograms local to the unit and called once
-  from within it, which is enabled if *-O1* is used.
+  from within it, which is enabled if :switch:`-O1` is used.
 
 
 .. index:: -fno-ivopts  (gcc)
 
-:samp:`-fno-ivopts`
+:switch:`-fno-ivopts`
   Suppresses high-level loop induction variable optimizations, which are
-  enabled if *-O1* is used. These optimizations are generally
+  enabled if :switch:`-O1` is used. These optimizations are generally
   profitable but, for some specific cases of loops with numerous uses
   of the iteration variable that follow a common pattern, they may end
   up destroying the regularity that could be exploited at a lower level
@@ -1300,7 +1315,7 @@ Alphabetical List of All Switches
 
 .. index:: -fno-strict-aliasing  (gcc)
 
-:samp:`-fno-strict-aliasing`
+:switch:`-fno-strict-aliasing`
   Causes the compiler to avoid assumptions regarding non-aliasing
   of objects of different types. See
   :ref:`Optimization_and_Strict_Aliasing` for details.
@@ -1308,89 +1323,89 @@ Alphabetical List of All Switches
 
 .. index:: -fno-strict-overflow  (gcc)
 
-:samp:`-fno-strict-overflow`
+:switch:`-fno-strict-overflow`
   Causes the compiler to avoid assumptions regarding the rules of signed
   integer overflow. These rules specify that signed integer overflow will
   result in a Constraint_Error exception at run time and are enforced in
   default mode by the compiler, so this switch should not be necessary in
-  normal operating mode. It might be useful in conjunction with *-gnato0*
+  normal operating mode. It might be useful in conjunction with :switch:`-gnato0`
   for very peculiar cases of low-level programming.
 
 
 .. index:: -fstack-check  (gcc)
 
-:samp:`-fstack-check`
+:switch:`-fstack-check`
   Activates stack checking.
   See :ref:`Stack_Overflow_Checking` for details.
 
 
 .. index:: -fstack-usage  (gcc)
 
-:samp:`-fstack-usage`
+:switch:`-fstack-usage`
   Makes the compiler output stack usage information for the program, on a
   per-subprogram basis. See :ref:`Static_Stack_Usage_Analysis` for details.
 
 
 .. index:: -g  (gcc)
 
-:samp:`-g`
+:switch:`-g`
   Generate debugging information. This information is stored in the object
   file and copied from there to the final executable file by the linker,
   where it can be read by the debugger. You must use the
-  *-g* switch if you plan on using the debugger.
+  :switch:`-g` switch if you plan on using the debugger.
 
 
 .. index:: -gnat05  (gcc)
 
-:samp:`-gnat05`
+:switch:`-gnat05`
   Allow full Ada 2005 features.
 
 
 .. index:: -gnat12  (gcc)
 
-:samp:`-gnat12`
+:switch:`-gnat12`
   Allow full Ada 2012 features.
 
 .. index:: -gnat83  (gcc)
 
 .. index:: -gnat2005  (gcc)
 
-:samp:`-gnat2005`
-  Allow full Ada 2005 features (same as *-gnat05*)
+:switch:`-gnat2005`
+  Allow full Ada 2005 features (same as :switch:`-gnat05`)
 
 
 .. index:: -gnat2012  (gcc)
 
-:samp:`-gnat2012`
-  Allow full Ada 2012 features (same as *-gnat12*)
+:switch:`-gnat2012`
+  Allow full Ada 2012 features (same as :switch:`-gnat12`)
 
 
-:samp:`-gnat83`
+:switch:`-gnat83`
   Enforce Ada 83 restrictions.
 
 
 .. index:: -gnat95  (gcc)
 
-:samp:`-gnat95`
+:switch:`-gnat95`
   Enforce Ada 95 restrictions.
 
   Note: for compatibility with some Ada 95 compilers which support only
-  the `overriding` keyword of Ada 2005, the *-gnatd.D* switch can
-  be used along with *-gnat95* to achieve a similar effect with GNAT.
+  the ``overriding`` keyword of Ada 2005, the :switch:`-gnatd.D` switch can
+  be used along with :switch:`-gnat95` to achieve a similar effect with GNAT.
 
-  *-gnatd.D* instructs GNAT to consider `overriding` as a keyword
+  :switch:`-gnatd.D` instructs GNAT to consider ``overriding`` as a keyword
   and handle its associated semantic checks, even in Ada 95 mode.
 
 
 .. index:: -gnata  (gcc)
 
-:samp:`-gnata`
-  Assertions enabled. `Pragma Assert` and `pragma Debug` to be
+:switch:`-gnata`
+  Assertions enabled. ``Pragma Assert`` and ``pragma Debug`` to be
   activated. Note that these pragmas can also be controlled using the
-  configuration pragmas `Assertion_Policy` and `Debug_Policy`.
-  It also activates pragmas `Check`, `Precondition`, and
-  `Postcondition`. Note that these pragmas can also be controlled
-  using the configuration pragma `Check_Policy`. In Ada 2012, it
+  configuration pragmas ``Assertion_Policy`` and ``Debug_Policy``.
+  It also activates pragmas ``Check``, ``Precondition``, and
+  ``Postcondition``. Note that these pragmas can also be controlled
+  using the configuration pragma ``Check_Policy``. In Ada 2012, it
   also activates all assertions defined in the RM as aspects: preconditions,
   postconditions, type invariants and (sub)type predicates. In all Ada modes,
   corresponding pragmas for type invariants and (sub)type predicates are
@@ -1402,43 +1417,41 @@ Alphabetical List of All Switches
 
 .. index:: -gnatA  (gcc)
 
-:samp:`-gnatA`
+:switch:`-gnatA`
   Avoid processing :file:`gnat.adc`. If a :file:`gnat.adc` file is present,
   it will be ignored.
 
 
 .. index:: -gnatb  (gcc)
 
-:samp:`-gnatb`
+:switch:`-gnatb`
   Generate brief messages to :file:`stderr` even if verbose mode set.
 
 
 .. index:: -gnatB  (gcc)
 
-:samp:`-gnatB`
+:switch:`-gnatB`
   Assume no invalid (bad) values except for 'Valid attribute use
   (:ref:`Validity_Checking`).
 
 
 .. index:: -gnatc  (gcc)
 
-:samp:`-gnatc`
+:switch:`-gnatc`
   Check syntax and semantics only (no code generation attempted). When the
-  compiler is invoked by *gnatmake*, if the switch *-gnatc* is
-  only given to the compiler (after *-cargs* or in package Compiler of
-  the project file, *gnatmake* will fail because it will not find the
-  object file after compilation. If *gnatmake* is called with
-  *-gnatc* as a builder switch (before *-cargs* or in package
-  Builder of the project file) then *gnatmake* will not fail because
+  compiler is invoked by ``gnatmake``, if the switch :switch:`-gnatc` is
+  only given to the compiler (after :switch:`-cargs` or in package Compiler of
+  the project file, ``gnatmake`` will fail because it will not find the
+  object file after compilation. If ``gnatmake`` is called with
+  :switch:`-gnatc` as a builder switch (before :switch:`-cargs` or in package
+  Builder of the project file) then ``gnatmake`` will not fail because
   it will not look for the object files after compilation, and it will not try
-  to build and link. This switch may not be given if a previous `-gnatR`
-  switch has been given, since `-gnatR` requires that the code generator
-  be called to complete determination of representation information.
+  to build and link.
 
 
 .. index:: -gnatC  (gcc)
 
-:samp:`-gnatC`
+:switch:`-gnatC`
   Generate CodePeer intermediate format (no code generation attempted).
   This switch will generate an intermediate representation suitable for
   use by CodePeer (:file:`.scil` files). This switch is not compatible with
@@ -1448,9 +1461,9 @@ Alphabetical List of All Switches
 
 .. index:: -gnatd  (gcc)
 
-:samp:`-gnatd`
+:switch:`-gnatd`
   Specify debug options for the compiler. The string of characters after
-  the *-gnatd* specify the specific debug options. The possible
+  the :switch:`-gnatd` specify the specific debug options. The possible
   characters are 0-9, a-z, A-Z, optionally preceded by a dot. See
   compiler source file :file:`debug.adb` for details of the implemented
   debug options. Certain debug options are relevant to applications
@@ -1460,16 +1473,16 @@ Alphabetical List of All Switches
 
 .. index:: -gnatD[nn]  (gcc)
 
-:samp:`-gnatD`
+:switch:`-gnatD`
   Create expanded source files for source level debugging. This switch
-  also suppress generation of cross-reference information
-  (see *-gnatx*). Note that this switch is not allowed if a previous
+  also suppresses generation of cross-reference information
+  (see :switch:`-gnatx`). Note that this switch is not allowed if a previous
   -gnatR switch has been given, since these two switches are not compatible.
 
 
 .. index:: -gnateA  (gcc)
 
-:samp:`-gnateA`
+:switch:`-gnateA`
   Check that the actual parameters of a subprogram call are not aliases of one
   another. To qualify as aliasing, the actuals must denote objects of a composite
   type, their memory locations must be identical or overlapping, and at least one
@@ -1498,16 +1511,16 @@ Alphabetical List of All Switches
       Detect_Aliasing (Obj, Self (Obj));
 
 
-  In the example above, the first call to `Detect_Aliasing` fails with a
-  `Program_Error` at runtime because the actuals for `Val_1` and
-  `Val_2` denote the same object. The second call executes without raising
-  an exception because `Self(Obj)` produces an anonymous object which does
-  not share the memory location of `Obj`.
+  In the example above, the first call to ``Detect_Aliasing`` fails with a
+  ``Program_Error`` at run time because the actuals for ``Val_1`` and
+  ``Val_2`` denote the same object. The second call executes without raising
+  an exception because ``Self(Obj)`` produces an anonymous object which does
+  not share the memory location of ``Obj``.
 
 
 .. index:: -gnatec  (gcc)
 
-:samp:`-gnatec={path}`
+:switch:`-gnatec={path}`
   Specify a configuration pragma file
   (the equal sign is optional)
   (:ref:`The_Configuration_Pragmas_Files`).
@@ -1515,28 +1528,28 @@ Alphabetical List of All Switches
 
 .. index:: -gnateC  (gcc)
 
-:samp:`-gnateC`
+:switch:`-gnateC`
   Generate CodePeer messages in a compiler-like format. This switch is only
-  effective if *-gnatcC* is also specified and requires an installation
+  effective if :switch:`-gnatcC` is also specified and requires an installation
   of CodePeer.
 
 
 .. index:: -gnated  (gcc)
 
-:samp:`-gnated`
+:switch:`-gnated`
   Disable atomic synchronization
 
 
 .. index:: -gnateD  (gcc)
 
-:samp:`-gnateDsymbol[={value}]`
-  Defines a symbol, associated with `value`, for preprocessing.
+:switch:`-gnateDsymbol[={value}]`
+  Defines a symbol, associated with ``value``, for preprocessing.
   (:ref:`Integrated_Preprocessing`).
 
 
 .. index:: -gnateE  (gcc)
 
-:samp:`-gnateE`
+:switch:`-gnateE`
   Generate extra information in exception messages. In particular, display
   extra column information and the value and range associated with index and
   range check failures, and extra column information for access checks.
@@ -1547,57 +1560,57 @@ Alphabetical List of All Switches
 
 .. index:: -gnatef  (gcc)
 
-:samp:`-gnatef`
+:switch:`-gnatef`
   Display full source path name in brief error messages.
 
 
 .. index:: -gnateF  (gcc)
 
-:samp:`-gnateF`
+:switch:`-gnateF`
   Check for overflow on all floating-point operations, including those
   for unconstrained predefined types. See description of pragma
-  `Check_Float_Overflow` in GNAT RM.
+  ``Check_Float_Overflow`` in GNAT RM.
 
 
 .. index:: -gnateg  (gcc)
 
-:samp:`-gnateg`
-:samp:`-gnatceg`
+:switch:`-gnateg`
+:switch:`-gnatceg`
 
-  The `-gnatc` switch must always be specified before this switch, e.g.
-  `-gnatceg`. Generate a C header from the Ada input file. See
+  The :switch:`-gnatc` switch must always be specified before this switch, e.g.
+  :switch:`-gnatceg`. Generate a C header from the Ada input file. See
   :ref:`Generating_C_Headers_for_Ada_Specifications` for more
   information.
 
 
 .. index:: -gnateG  (gcc)
 
-:samp:`-gnateG`
+:switch:`-gnateG`
   Save result of preprocessing in a text file.
 
 
 .. index:: -gnatei  (gcc)
 
-:samp:`-gnatei{nnn}`
+:switch:`-gnatei{nnn}`
   Set maximum number of instantiations during compilation of a single unit to
-  `nnn`. This may be useful in increasing the default maximum of 8000 for
+  ``nnn``. This may be useful in increasing the default maximum of 8000 for
   the rare case when a single unit legitimately exceeds this limit.
 
 
 .. index:: -gnateI  (gcc)
 
-:samp:`-gnateI{nnn}`
+:switch:`-gnateI{nnn}`
   Indicates that the source is a multi-unit source and that the index of the
-  unit to compile is `nnn`. `nnn` needs to be a positive number and need
+  unit to compile is ``nnn``. ``nnn`` needs to be a positive number and need
   to be a valid index in the multi-unit source.
 
 
 .. index:: -gnatel  (gcc)
 
-:samp:`-gnatel`
+:switch:`-gnatel`
   This switch can be used with the static elaboration model to issue info
   messages showing
-  where implicit `pragma Elaborate` and `pragma Elaborate_All`
+  where implicit ``pragma Elaborate`` and ``pragma Elaborate_All``
   are generated. This is useful in diagnosing elaboration circularities
   caused by these implicit pragmas when using the static elaboration
   model. See See the section in this guide on elaboration checking for
@@ -1607,13 +1620,13 @@ Alphabetical List of All Switches
 
 .. index:: -gnatel  (gcc)
 
-:samp:`-gnateL`
+:switch:`-gnateL`
   This switch turns off the info messages about implicit elaboration pragmas.
 
 
 .. index:: -gnatem  (gcc)
 
-:samp:`-gnatem={path}`
+:switch:`-gnatem={path}`
   Specify a mapping file
   (the equal sign is optional)
   (:ref:`Units_to_Sources_Mapping_Files`).
@@ -1621,7 +1634,7 @@ Alphabetical List of All Switches
 
 .. index:: -gnatep  (gcc)
 
-:samp:`-gnatep={file}`
+:switch:`-gnatep={file}`
   Specify a preprocessing data file
   (the equal sign is optional)
   (:ref:`Integrated_Preprocessing`).
@@ -1629,7 +1642,7 @@ Alphabetical List of All Switches
 
 .. index:: -gnateP  (gcc)
 
-:samp:`-gnateP`
+:switch:`-gnateP`
   Turn categorization dependency errors into warnings.
   Ada requires that units that WITH one another have compatible categories, for
   example a Pure unit cannot WITH a Preelaborate unit. If this switch is used,
@@ -1640,20 +1653,20 @@ Alphabetical List of All Switches
 
 .. index:: -gnateS  (gcc)
 
-:samp:`-gnateS`
-  Synonym of *-fdump-scos*, kept for backwards compatibility.
+:switch:`-gnateS`
+  Synonym of :switch:`-fdump-scos`, kept for backwards compatibility.
 
 
 .. index:: -gnatet=file  (gcc)
 
-:samp:`-gnatet={path}`
+:switch:`-gnatet={path}`
   Generate target dependent information. The format of the output file is
-  described in the section about switch *-gnateT*.
+  described in the section about switch :switch:`-gnateT`.
 
 
 .. index:: -gnateT  (gcc)
 
-:samp:`-gnateT={path}`
+:switch:`-gnateT={path}`
   Read target dependent information, such as endianness or sizes and alignments
   of base type. If this switch is passed, the default target dependent
   information of the compiler is replaced by the one read from the input file.
@@ -1662,7 +1675,7 @@ Alphabetical List of All Switches
   the machine on which the tool is run.
 
   The following target dependent values should be defined,
-  where `Nat` denotes a natural integer value, `Pos` denotes a
+  where ``Nat`` denotes a natural integer value, ``Pos`` denotes a
   positive integer value, and fields marked with a question mark are
   boolean fields, where a value of 0 is False, and a value of 1 is True:
 
@@ -1686,13 +1699,46 @@ Alphabetical List of All Switches
     Maximum_Alignment          : Pos; -- Maximum permitted alignment
     Max_Unaligned_Field        : Pos; -- Maximum size for unaligned bit field
     Pointer_Size               : Pos; -- System.Address'Size
-    Short_Enums                : Nat; -- Short foreign convention enums?
+    Short_Enums                : Nat; -- Foreign enums use short size?
     Short_Size                 : Pos; -- Standard.Short_Integer'Size
     Strict_Alignment           : Nat; -- Strict alignment?
     System_Allocator_Alignment : Nat; -- Alignment for malloc calls
     Wchar_T_Size               : Pos; -- Interfaces.C.wchar_t'Size
     Words_BE                   : Nat; -- Words stored big-endian?
 
+  ``Bits_Per_Unit`` is the number of bits in a storage unit, the equivalent of
+  GCC macro ``BITS_PER_UNIT`` documented as follows: `Define this macro to be
+  the number of bits in an addressable storage unit (byte); normally 8.`
+
+  ``Bits_Per_Word`` is the number of bits in a machine word, the equivalent of
+  GCC macro ``BITS_PER_WORD`` documented as follows: `Number of bits in a word;
+  normally 32.`
+
+  ``Double_Float_Alignment``, if not zero, is the maximum alignment that the
+  compiler can choose by default for a 64-bit floating-point type or object.
+
+  ``Double_Scalar_Alignment``, if not zero, is the maximum alignment that the
+  compiler can choose by default for a 64-bit or larger scalar type or object.
+
+  ``Maximum_Alignment`` is the maximum alignment that the compiler can choose
+  by default for a type or object, which is also the maximum alignment that can
+  be specified in GNAT. It is computed for GCC backends as ``BIGGEST_ALIGNMENT
+  / BITS_PER_UNIT`` where GCC macro ``BIGGEST_ALIGNMENT`` is documented as
+  follows: `Biggest alignment that any data type can require on this machine,
+  in bits.`
+
+  ``Max_Unaligned_Field`` is the maximum size for unaligned bit field, which is
+  64 for the majority of GCC targets (but can be different on some targets like
+  AAMP).
+
+  ``Strict_Alignment`` is the equivalent of GCC macro ``STRICT_ALIGNMENT``
+  documented as follows: `Define this macro to be the value 1 if instructions
+  will fail to work if given data not on the nominal alignment. If instructions
+  will merely go slower in that case, define this macro as 0.`
+
+  ``System_Allocator_Alignment`` is the guaranteed alignment of data returned
+  by calls to ``malloc``.
+
 
   The format of the input file is as follows. First come the values of
   the variables defined above, with one line per value:
@@ -1702,8 +1748,8 @@ Alphabetical List of All Switches
 
     name  value
 
-  where `name` is the name of the parameter, spelled out in full,
-  and cased as in the above list, and `value` is an unsigned decimal
+  where ``name`` is the name of the parameter, spelled out in full,
+  and cased as in the above list, and ``value`` is an unsigned decimal
   integer. Two or more blanks separates the name from the value.
 
   All the variables must be present, in alphabetical order (i.e. the
@@ -1719,11 +1765,11 @@ Alphabetical List of All Switches
     name  digs float_rep size alignment
 
 
-  where `name` is the string name of the type (which can have
-  single spaces embedded in the name (e.g. long double), `digs` is
-  the number of digits for the floating-point type, `float_rep` is
+  where ``name`` is the string name of the type (which can have
+  single spaces embedded in the name (e.g. long double), ``digs`` is
+  the number of digits for the floating-point type, ``float_rep`` is
   the float representation (I/V/A for IEEE-754-Binary, Vax_Native,
-  AAMP), `size` is the size in bits, `alignment` is the
+  AAMP), ``size`` is the size in bits, ``alignment`` is the
   alignment in bits. The name is followed by at least two blanks, fields
   are separated by at least one blank, and a LF character immediately
   follows the alignment field.
@@ -1765,7 +1811,7 @@ Alphabetical List of All Switches
 
 .. index:: -gnateu  (gcc)
 
-:samp:`-gnateu`
+:switch:`-gnateu`
   Ignore unrecognized validity, warning, and style switches that
   appear after this switch is given. This may be useful when
   compiling sources developed on a later version of the compiler
@@ -1775,14 +1821,14 @@ Alphabetical List of All Switches
 
 .. index:: -gnateV  (gcc)
 
-:samp:`-gnateV`
+:switch:`-gnateV`
   Check that all actual parameters of a subprogram call are valid according to
   the rules of validity checking (:ref:`Validity_Checking`).
 
 
 .. index:: -gnateY  (gcc)
 
-:samp:`-gnateY`
+:switch:`-gnateY`
   Ignore all STYLE_CHECKS pragmas. Full legality checks
   are still carried out, but the pragmas have no effect
   on what style checks are active. This allows all style
@@ -1791,59 +1837,66 @@ Alphabetical List of All Switches
 
 .. index:: -gnatE  (gcc)
 
-:samp:`-gnatE`
-  Full dynamic elaboration checks.
+:switch:`-gnatE`
+  Dynamic elaboration checking mode enabled. For further details see
+  :ref:`Elaboration_Order_Handling_in_GNAT`.
 
 
 .. index:: -gnatf  (gcc)
 
-:samp:`-gnatf`
+:switch:`-gnatf`
   Full errors. Multiple errors per line, all undefined references, do not
   attempt to suppress cascaded errors.
 
 
 .. index:: -gnatF  (gcc)
 
-:samp:`-gnatF`
+:switch:`-gnatF`
   Externals names are folded to all uppercase.
 
 
 .. index:: -gnatg  (gcc)
 
-:samp:`-gnatg`
-  Internal GNAT implementation mode. This should not be used for
-  applications programs, it is intended only for use by the compiler
-  and its run-time library. For documentation, see the GNAT sources.
-  Note that *-gnatg* implies
-  *-gnatw.ge* and
-  *-gnatyg*
-  so that all standard warnings and all standard style options are turned on.
-  All warnings and style messages are treated as errors.
+:switch:`-gnatg`
+  Internal GNAT implementation mode. This should not be used for applications
+  programs, it is intended only for use by the compiler and its run-time
+  library. For documentation, see the GNAT sources. Note that :switch:`-gnatg`
+  implies :switch:`-gnatw.ge` and :switch:`-gnatyg` so that all standard
+  warnings and all standard style options are turned on. All warnings and style
+  messages are treated as errors.
 
 
 .. index:: -gnatG[nn]  (gcc)
 
-:samp:`-gnatG=nn`
+:switch:`-gnatG=nn`
   List generated expanded code in source form.
 
 
 .. index:: -gnath  (gcc)
 
-:samp:`-gnath`
+:switch:`-gnath`
   Output usage information. The output is written to :file:`stdout`.
 
 
+.. index:: -gnatH  (gcc)
+
+:switch:`-gnatH`
+  Legacy elaboration-checking mode enabled. When this switch is in effect,
+  the pre-18.x access-before-elaboration model becomes the de facto model.
+  For further details see :ref:`Elaboration_Order_Handling_in_GNAT`.
+
+
 .. index:: -gnati  (gcc)
 
-:samp:`-gnati{c}`
-  Identifier character set (`c` = 1/2/3/4/8/9/p/f/n/w).
-  For details of the possible selections for `c`,
+:switch:`-gnati{c}`
+  Identifier character set (``c`` = 1/2/3/4/8/9/p/f/n/w).
+  For details of the possible selections for ``c``,
   see :ref:`Character_Set_Control`.
 
 
 .. index:: -gnatI  (gcc)
 
-:samp:`-gnatI`
+:switch:`-gnatI`
   Ignore representation clauses. When this switch is used,
   representation clauses are treated as comments. This is useful
   when initially porting code where you want to ignore rep clause
@@ -1852,36 +1905,59 @@ Alphabetical List of All Switches
   are: enumeration_representation_clause, record_representation_clause,
   and attribute_definition_clause for the following attributes:
   Address, Alignment, Bit_Order, Component_Size, Machine_Radix,
-  Object_Size, Size, Small, Stream_Size, and Value_Size.
+  Object_Size, Scalar_Storage_Order, Size, Small, Stream_Size,
+  and Value_Size. Pragma Default_Scalar_Storage_Order is also ignored.
   Note that this option should be used only for compiling -- the
   code is likely to malfunction at run time.
 
-  Note that when `-gnatct` is used to generate trees for input
-  into `ASIS` tools, these representation clauses are removed
+  Note that when :switch:`-gnatct` is used to generate trees for input
+  into ASIS tools, these representation clauses are removed
   from the tree and ignored. This means that the tool will not see them.
 
 
 .. index:: -gnatjnn  (gcc)
 
-:samp:`-gnatj{nn}`
-  Reformat error messages to fit on `nn` character lines
+:switch:`-gnatj{nn}`
+  Reformat error messages to fit on ``nn`` character lines
+
+
+.. index:: -gnatJ  (gcc)
+
+:switch:`-gnatJ`
+  Permissive elaboration-checking mode enabled. When this switch is in effect,
+  the post-18.x access-before-elaboration model ignores potential issues with:
+
+  - Accept statements
+  - Activations of tasks defined in instances
+  - Assertion pragmas
+  - Calls from within an instance to its enclosing context
+  - Calls through generic formal parameters
+  - Calls to subprograms defined in instances
+  - Entry calls
+  - Indirect calls using 'Access
+  - Requeue statements
+  - Select statements
+  - Synchronous task suspension
+
+  and does not emit compile-time diagnostics or run-time checks. For further
+  details see :ref:`Elaboration_Order_Handling_in_GNAT`.
 
 
 .. index:: -gnatk  (gcc)
 
-:samp:`-gnatk={n}`
-  Limit file names to `n` (1-999) characters (`k` = krunch).
+:switch:`-gnatk={n}`
+  Limit file names to ``n`` (1-999) characters (``k`` = krunch).
 
 
 .. index:: -gnatl  (gcc)
 
-:samp:`-gnatl`
+:switch:`-gnatl`
   Output full source listing with embedded error messages.
 
 
 .. index:: -gnatL  (gcc)
 
-:samp:`-gnatL`
+:switch:`-gnatL`
   Used in conjunction with -gnatG or -gnatD to intersperse original
   source lines (as comment lines with line numbers) in the expanded
   source output.
@@ -1889,9 +1965,9 @@ Alphabetical List of All Switches
 
 .. index:: -gnatm  (gcc)
 
-:samp:`-gnatm={n}`
-  Limit number of detected error or warning messages to `n`
-  where `n` is in the range 1..999999. The default setting if
+:switch:`-gnatm={n}`
+  Limit number of detected error or warning messages to ``n``
+  where ``n`` is in the range 1..999999. The default setting if
   no switch is given is 9999. If the number of warnings reaches this
   limit, then a message is output and further warnings are suppressed,
   but the compilation is continued. If the number of error messages
@@ -1902,52 +1978,52 @@ Alphabetical List of All Switches
 
 .. index:: -gnatn  (gcc)
 
-:samp:`-gnatn[12]`
-  Activate inlining for subprograms for which pragma `Inline` is
-  specified. This inlining is performed by the GCC back-end. An optional
-  digit sets the inlining level: 1 for moderate inlining across modules
-  or 2 for full inlining across modules. If no inlining level is specified,
+:switch:`-gnatn[12]`
+  Activate inlining across units for subprograms for which pragma ``Inline``
+  is specified. This inlining is performed by the GCC back-end. An optional
+  digit sets the inlining level: 1 for moderate inlining across units
+  or 2 for full inlining across units. If no inlining level is specified,
   the compiler will pick it based on the optimization level.
 
 
 .. index:: -gnatN  (gcc)
 
-:samp:`-gnatN`
+:switch:`-gnatN`
   Activate front end inlining for subprograms for which
-  pragma `Inline` is specified. This inlining is performed
+  pragma ``Inline`` is specified. This inlining is performed
   by the front end and will be visible in the
-  *-gnatG* output.
+  :switch:`-gnatG` output.
 
   When using a gcc-based back end (in practice this means using any version
   of GNAT other than the JGNAT, .NET or GNAAMP versions), then the use of
-  *-gnatN* is deprecated, and the use of *-gnatn* is preferred.
+  :switch:`-gnatN` is deprecated, and the use of :switch:`-gnatn` is preferred.
   Historically front end inlining was more extensive than the gcc back end
   inlining, but that is no longer the case.
 
 
 .. index:: -gnato0  (gcc)
 
-:samp:`-gnato0`
+:switch:`-gnato0`
   Suppresses overflow checking. This causes the behavior of the compiler to
   match the default for older versions where overflow checking was suppressed
   by default. This is equivalent to having
-  `pragma Suppress (Overflow_Mode)` in a configuration pragma file.
+  ``pragma Suppress (Overflow_Check)`` in a configuration pragma file.
 
 
 .. index:: -gnato??  (gcc)
 
-:samp:`-gnato??`
+:switch:`-gnato??`
   Set default mode for handling generation of code to avoid intermediate
-  arithmetic overflow. Here `??` is two digits, a
-  single digit, or nothing. Each digit is one of the digits `1`
-  through `3`:
+  arithmetic overflow. Here ``??`` is two digits, a
+  single digit, or nothing. Each digit is one of the digits ``1``
+  through ``3``:
 
   ===== ===============================================================
   Digit Interpretation
   ----- ---------------------------------------------------------------
-  *1*   All intermediate overflows checked against base type (`STRICT`)
-  *2*   Minimize intermediate overflows (`MINIMIZED`)
-  *3*   Eliminate intermediate overflows (`ELIMINATED`)
+  *1*   All intermediate overflows checked against base type (``STRICT``)
+  *2*   Minimize intermediate overflows (``MINIMIZED``)
+  *3*   Eliminate intermediate overflows (``ELIMINATED``)
   ===== ===============================================================
 
   If only one digit appears, then it applies to all
@@ -1955,16 +2031,16 @@ Alphabetical List of All Switches
   assertions, pre/postconditions, and type invariants, and the second
   applies within assertions, pre/postconditions, and type invariants.
 
-  If no digits follow the *-gnato*, then it is equivalent to
-  *-gnato11*,
+  If no digits follow the :switch:`-gnato`, then it is equivalent to
+  :switch:`-gnato11`,
   causing all intermediate overflows to be handled in strict
   mode.
 
   This switch also causes arithmetic overflow checking to be performed
-  (as though `pragma Unsuppress (Overflow_Mode)` had been specified).
+  (as though ``pragma Unsuppress (Overflow_Check)`` had been specified).
 
-  The default if no option *-gnato* is given is that overflow handling
-  is in `STRICT` mode (computations done using the base type), and that
+  The default if no option :switch:`-gnato` is given is that overflow handling
+  is in ``STRICT`` mode (computations done using the base type), and that
   overflow checking is enabled.
 
   Note that division by zero is a separate check that is not
@@ -1975,160 +2051,157 @@ Alphabetical List of All Switches
 
 .. index:: -gnatp  (gcc)
 
-:samp:`-gnatp`
+:switch:`-gnatp`
   Suppress all checks. See :ref:`Run-Time_Checks` for details. This switch
-  has no effect if cancelled by a subsequent *-gnat-p* switch.
+  has no effect if cancelled by a subsequent :switch:`-gnat-p` switch.
 
 
 .. index:: -gnat-p  (gcc)
 
-:samp:`-gnat-p`
-  Cancel effect of previous *-gnatp* switch.
+:switch:`-gnat-p`
+  Cancel effect of previous :switch:`-gnatp` switch.
 
 
 .. index:: -gnatP  (gcc)
 
-:samp:`-gnatP`
+:switch:`-gnatP`
   Enable polling. This is required on some systems (notably Windows NT) to
   obtain asynchronous abort and asynchronous transfer of control capability.
-  See `Pragma_Polling` in the :title:`GNAT_Reference_Manual` for full
+  See ``Pragma_Polling`` in the :title:`GNAT_Reference_Manual` for full
   details.
 
 
 .. index:: -gnatq  (gcc)
 
-:samp:`-gnatq`
+:switch:`-gnatq`
   Don't quit. Try semantics, even if parse errors.
 
 
 .. index:: -gnatQ  (gcc)
 
-:samp:`-gnatQ`
+:switch:`-gnatQ`
   Don't quit. Generate :file:`ALI` and tree files even if illegalities.
   Note that code generation is still suppressed in the presence of any
-  errors, so even with *-gnatQ* no object file is generated.
+  errors, so even with :switch:`-gnatQ` no object file is generated.
 
 
 .. index:: -gnatr  (gcc)
 
-:samp:`-gnatr`
+:switch:`-gnatr`
   Treat pragma Restrictions as Restriction_Warnings.
 
 
 .. index:: -gnatR  (gcc)
 
-:samp:`-gnatR[0/1/2/3[s]]`
-  Output representation information for declared types and objects.
-  Note that this switch is not allowed if a previous `-gnatD` switch has
-  been given, since these two switches are not compatible.
-
-
-:samp:`-gnatRm[s]`
-  Output convention and parameter passing mechanisms for all subprograms.
+:switch:`-gnatR[0|1|2|3|4][e][j][m][s]`
+  Output representation information for declared types, objects and
+  subprograms. Note that this switch is not allowed if a previous
+  :switch:`-gnatD` switch has been given, since these two switches
+  are not compatible.
 
 
 .. index:: -gnats  (gcc)
 
-:samp:`-gnats`
+:switch:`-gnats`
   Syntax check only.
 
 
 .. index:: -gnatS  (gcc)
 
-:samp:`-gnatS`
+:switch:`-gnatS`
   Print package Standard.
 
 
 .. index:: -gnatt  (gcc)
 
-:samp:`-gnatt`
+:switch:`-gnatt`
   Generate tree output file.
 
 
 .. index:: -gnatT  (gcc)
 
-:samp:`-gnatT{nnn}`
-  All compiler tables start at `nnn` times usual starting size.
+:switch:`-gnatT{nnn}`
+  All compiler tables start at ``nnn`` times usual starting size.
 
 
 .. index:: -gnatu  (gcc)
 
-:samp:`-gnatu`
+:switch:`-gnatu`
   List units for this compilation.
 
 
 .. index:: -gnatU  (gcc)
 
-:samp:`-gnatU`
+:switch:`-gnatU`
   Tag all error messages with the unique string 'error:'
 
 
 .. index:: -gnatv  (gcc)
 
-:samp:`-gnatv`
+:switch:`-gnatv`
   Verbose mode. Full error output with source lines to :file:`stdout`.
 
 
 .. index:: -gnatV  (gcc)
 
-:samp:`-gnatV`
+:switch:`-gnatV`
   Control level of validity checking (:ref:`Validity_Checking`).
 
 
 .. index:: -gnatw  (gcc)
 
-:samp:`-gnatw{xxx}`
+:switch:`-gnatw{xxx}`
   Warning mode where
-  `xxx` is a string of option letters that denotes
+  ``xxx`` is a string of option letters that denotes
   the exact warnings that
   are enabled or disabled (:ref:`Warning_Message_Control`).
 
 
 .. index:: -gnatW  (gcc)
 
-:samp:`-gnatW{e}`
+:switch:`-gnatW{e}`
   Wide character encoding method
-  (`e`\ =n/h/u/s/e/8).
+  (``e``\ =n/h/u/s/e/8).
 
 
 .. index:: -gnatx  (gcc)
 
-:samp:`-gnatx`
+:switch:`-gnatx`
   Suppress generation of cross-reference information.
 
 
 .. index:: -gnatX  (gcc)
 
-:samp:`-gnatX`
+:switch:`-gnatX`
   Enable GNAT implementation extensions and latest Ada version.
 
 
 .. index:: -gnaty  (gcc)
 
-:samp:`-gnaty`
+:switch:`-gnaty`
   Enable built-in style checks (:ref:`Style_Checking`).
 
 
 .. index:: -gnatz  (gcc)
 
-:samp:`-gnatz{m}`
+:switch:`-gnatz{m}`
   Distribution stub generation and compilation
-  (`m`\ =r/c for receiver/caller stubs).
+  (``m``\ =r/c for receiver/caller stubs).
 
 
 .. index:: -I  (gcc)
 
-:samp:`-I{dir}`
+:switch:`-I{dir}`
   .. index:: RTL
 
-  Direct GNAT to search the `dir` directory for source files needed by
+  Direct GNAT to search the ``dir`` directory for source files needed by
   the current compilation
   (see :ref:`Search_Paths_and_the_Run-Time_Library_RTL`).
 
 
 .. index:: -I-  (gcc)
 
-:samp:`-I-`
+:switch:`-I-`
   .. index:: RTL
 
   Except for the source file named in the command line, do not look for source
@@ -2138,8 +2211,8 @@ Alphabetical List of All Switches
 
 .. index:: -o  (gcc)
 
-:samp:`-o {file}`
-  This switch is used in *gcc* to redirect the generated object file
+:switch:`-o {file}`
+  This switch is used in ``gcc`` to redirect the generated object file
   and its associated ALI file. Beware of this switch with GNAT, because it may
   cause the object file and ALI file to have different names which in turn
   may confuse the binder and the linker.
@@ -2147,33 +2220,33 @@ Alphabetical List of All Switches
 
 .. index:: -nostdinc  (gcc)
 
-:samp:`-nostdinc`
+:switch:`-nostdinc`
   Inhibit the search of the default location for the GNAT Run Time
   Library (RTL) source files.
 
 
 .. index:: -nostdlib  (gcc)
 
-:samp:`-nostdlib`
+:switch:`-nostdlib`
   Inhibit the search of the default location for the GNAT Run Time
   Library (RTL) ALI files.
 
 
 .. index:: -O  (gcc)
 
-:samp:`-O[{n}]`
-  `n` controls the optimization level:
+:switch:`-O[{n}]`
+  ``n`` controls the optimization level:
 
   ======= ==================================================================
    *n*     Effect
   ------- ------------------------------------------------------------------
-  *0*      No optimization, the default setting if no *-O* appears
-  *1*      Normal optimization, the default if you specify *-O* without an
+  *0*      No optimization, the default setting if no :switch:`-O` appears
+  *1*      Normal optimization, the default if you specify :switch:`-O` without an
            operand. A good compromise between code quality and compilation
            time.
   *2*      Extensive optimization, may improve execution time, possibly at
            the cost of substantially increased compilation time.
-  *3*      Same as *-O2*, and also includes inline expansion for small
+  *3*      Same as :switch:`-O2`, and also includes inline expansion for small
            subprograms in the same unit.
   *s*      Optimize space usage
   ======= ==================================================================
@@ -2183,22 +2256,22 @@ Alphabetical List of All Switches
 
 .. index:: -pass-exit-codes  (gcc)
 
-:samp:`-pass-exit-codes`
+:switch:`-pass-exit-codes`
   Catch exit codes from the compiler and use the most meaningful as
   exit status.
 
 
 .. index:: --RTS  (gcc)
 
-:samp:`--RTS={rts-path}`
-  Specifies the default location of the runtime library. Same meaning as the
-  equivalent *gnatmake* flag (:ref:`Switches_for_gnatmake`).
+:switch:`--RTS={rts-path}`
+  Specifies the default location of the run-time library. Same meaning as the
+  equivalent ``gnatmake`` flag (:ref:`Switches_for_gnatmake`).
 
 
 .. index:: -S  (gcc)
 
-:samp:`-S`
-  Used in place of *-c* to
+:switch:`-S`
+  Used in place of :switch:`-c` to
   cause the assembler source file to be
   generated, using :file:`.s` as the extension,
   instead of the object file.
@@ -2207,33 +2280,33 @@ Alphabetical List of All Switches
 
 .. index:: -fverbose-asm  (gcc)
 
-:samp:`-fverbose-asm`
-  Used in conjunction with *-S*
+:switch:`-fverbose-asm`
+  Used in conjunction with :switch:`-S`
   to cause the generated assembly code file to be annotated with variable
   names, making it significantly easier to follow.
 
 
 .. index:: -v  (gcc)
 
-:samp:`-v`
-  Show commands generated by the *gcc* driver. Normally used only for
+:switch:`-v`
+  Show commands generated by the ``gcc`` driver. Normally used only for
   debugging purposes or if you need to be sure what version of the
   compiler you are executing.
 
 
 .. index:: -V  (gcc)
 
-:samp:`-V {ver}`
-  Execute `ver` version of the compiler. This is the *gcc*
+:switch:`-V {ver}`
+  Execute ``ver`` version of the compiler. This is the ``gcc``
   version, not the GNAT version.
 
 
 .. index:: -w  (gcc)
 
-:samp:`-w`
+:switch:`-w`
   Turn off warnings generated by the back end of the compiler. Use of
   this switch also causes the default for front end warnings to be set
-  to suppress (as though *-gnatws* had appeared at the start of
+  to suppress (as though :switch:`-gnatws` had appeared at the start of
   the options).
 
 
@@ -2255,31 +2328,31 @@ is equivalent to specifying the following sequence of switches:
 The following restrictions apply to the combination of switches
 in this manner:
 
-* The switch *-gnatc* if combined with other switches must come
+* The switch :switch:`-gnatc` if combined with other switches must come
   first in the string.
 
-* The switch *-gnats* if combined with other switches must come
+* The switch :switch:`-gnats` if combined with other switches must come
   first in the string.
 
 * The switches
-  *-gnatzc* and *-gnatzr* may not be combined with any other
+  :switch:`-gnatzc` and :switch:`-gnatzr` may not be combined with any other
   switches, and only one of them may appear in the command line.
 
-* The switch *-gnat-p* may not be combined with any other switch.
+* The switch :switch:`-gnat-p` may not be combined with any other switch.
 
-* Once a 'y' appears in the string (that is a use of the *-gnaty*
+* Once a 'y' appears in the string (that is a use of the :switch:`-gnaty`
   switch), then all further characters in the switch are interpreted
-  as style modifiers (see description of *-gnaty*).
+  as style modifiers (see description of :switch:`-gnaty`).
 
-* Once a 'd' appears in the string (that is a use of the *-gnatd*
+* Once a 'd' appears in the string (that is a use of the :switch:`-gnatd`
   switch), then all further characters in the switch are interpreted
-  as debug flags (see description of *-gnatd*).
+  as debug flags (see description of :switch:`-gnatd`).
 
-* Once a 'w' appears in the string (that is a use of the *-gnatw*
+* Once a 'w' appears in the string (that is a use of the :switch:`-gnatw`
   switch), then all further characters in the switch are interpreted
-  as warning mode modifiers (see description of *-gnatw*).
+  as warning mode modifiers (see description of :switch:`-gnatw`).
 
-* Once a 'V' appears in the string (that is a use of the *-gnatV*
+* Once a 'V' appears in the string (that is a use of the :switch:`-gnatV`
   switch), then all further characters in the switch are interpreted
   as validity checking options (:ref:`Validity_Checking`).
 
@@ -2304,7 +2377,7 @@ file) and have the following form:
 
 The first integer after the file name is the line number in the file,
 and the second integer is the column number within the line.
-`GPS` can parse the error messages
+``GPS`` can parse the error messages
 and point to the referenced character.
 The following switches provide control over the error message
 format:
@@ -2312,12 +2385,12 @@ format:
 
 .. index:: -gnatv  (gcc)
 
-:samp:`-gnatv`
-  The `v` stands for verbose.
+:switch:`-gnatv`
+  The ``v`` stands for verbose.
   The effect of this setting is to write long-format error
   messages to :file:`stdout` (the standard output file.
   The same program compiled with the
-  *-gnatv* switch would generate:
+  :switch:`-gnatv` switch would generate:
 
   ::
 
@@ -2329,15 +2402,15 @@ format:
     >>> ";" should be "is"
 
 
-  The vertical bar indicates the location of the error, and the :samp:`>>>`
+  The vertical bar indicates the location of the error, and the ``>>>``
   prefix can be used to search for error messages. When this switch is
   used the only source lines output are those with errors.
 
 
 .. index:: -gnatl  (gcc)
 
-:samp:`-gnatl`
-  The `l` stands for list.
+:switch:`-gnatl`
+  The ``l`` stands for list.
   This switch causes a full listing of
   the file to be generated. In the case where a body is
   compiled, the corresponding spec is also listed, along
@@ -2380,7 +2453,7 @@ format:
          5. end;
 
 
-  When you specify the *-gnatv* or *-gnatl* switches and
+  When you specify the :switch:`-gnatv` or :switch:`-gnatl` switches and
   standard output is redirected, a brief summary is written to
   :file:`stderr` (standard error) giving the number of error messages and
   warning messages generated.
@@ -2388,19 +2461,19 @@ format:
 
 .. index:: -gnatl=fname  (gcc)
 
-:samp:`-gnatl={fname}`
-  This has the same effect as *-gnatl* except that the output is
+:switch:`-gnatl={fname}`
+  This has the same effect as :switch:`-gnatl` except that the output is
   written to a file instead of to standard output. If the given name
   :file:`fname` does not start with a period, then it is the full name
   of the file to be written. If :file:`fname` is an extension, it is
   appended to the name of the file being compiled. For example, if
-  file :file:`xyz.adb` is compiled with *-gnatl=.lst*,
+  file :file:`xyz.adb` is compiled with :switch:`-gnatl=.lst`,
   then the output is written to file xyz.adb.lst.
 
 
 .. index:: -gnatU  (gcc)
 
-:samp:`-gnatU`
+:switch:`-gnatU`
   This switch forces all error messages to be preceded by the unique
   string 'error:'. This means that error messages take a few more
   characters in space, but allows easy searching for and identification
@@ -2409,8 +2482,8 @@ format:
 
 .. index:: -gnatb  (gcc)
 
-:samp:`-gnatb`
-  The `b` stands for brief.
+:switch:`-gnatb`
+  The ``b`` stands for brief.
   This switch causes GNAT to generate the
   brief format error messages to :file:`stderr` (the standard error
   file) as well as the verbose
@@ -2420,12 +2493,12 @@ format:
 
 .. index:: -gnatm  (gcc)
 
-:samp:`-gnatm={n}`
-  The `m` stands for maximum.
-  `n` is a decimal integer in the
+:switch:`-gnatm={n}`
+  The ``m`` stands for maximum.
+  ``n`` is a decimal integer in the
   range of 1 to 999999 and limits the number of error or warning
   messages to be generated. For example, using
-  *-gnatm2* might yield
+  :switch:`-gnatm2` might yield
 
   ::
 
@@ -2443,15 +2516,15 @@ format:
   is abandoned. A value of zero means that no limit applies.
 
   Note that the equal sign is optional, so the switches
-  *-gnatm2* and *-gnatm=2* are equivalent.
+  :switch:`-gnatm2` and :switch:`-gnatm=2` are equivalent.
 
 
 .. index:: -gnatf  (gcc)
 
-:samp:`-gnatf`
+:switch:`-gnatf`
   .. index:: Error messages, suppressing
 
-  The `f` stands for full.
+  The ``f`` stands for full.
   Normally, the compiler suppresses error messages that are likely to be
   redundant. This switch causes all error
   messages to be generated. In particular, in the case of
@@ -2463,8 +2536,8 @@ format:
     e.adb:7:07: "V" is undefined (more references follow)
 
   where the parenthetical comment warns that there are additional
-  references to the variable `V`. Compiling the same program with the
-  *-gnatf* switch yields
+  references to the variable ``V``. Compiling the same program with the
+  :switch:`-gnatf` switch yields
 
   ::
 
@@ -2475,7 +2548,7 @@ format:
     e.adb:9:07: "V" is undefined
     e.adb:9:12: "V" is undefined
 
-  The *-gnatf* switch also generates additional information for
+  The :switch:`-gnatf` switch also generates additional information for
   some error messages.  Some examples are:
 
   * Details on possibly non-portable unchecked conversion
@@ -2487,13 +2560,13 @@ format:
 
 .. index:: -gnatjnn  (gcc)
 
-:samp:`-gnatjnn`
-  In normal operation mode (or if *-gnatj0* is used), then error messages
+:switch:`-gnatjnn`
+  In normal operation mode (or if :switch:`-gnatj0` is used), then error messages
   with continuation lines are treated as though the continuation lines were
   separate messages (and so a warning with two continuation lines counts as
   three warnings, and is listed as three separate messages).
 
-  If the *-gnatjnn* switch is used with a positive value for nn, then
+  If the :switch:`-gnatjnn` switch is used with a positive value for nn, then
   messages are output in a different manner. A message and all its continuation
   lines are treated as a unit, and count as only one warning or message in the
   statistics totals. Furthermore, the message is reformatted so that no line
@@ -2502,8 +2575,8 @@ format:
 
 .. index:: -gnatq  (gcc)
 
-:samp:`-gnatq`
-  The `q` stands for quit (really 'don't quit').
+:switch:`-gnatq`
+  The ``q`` stands for quit (really 'don't quit').
   In normal operation mode, the compiler first parses the program and
   determines if there are any syntax errors. If there are, appropriate
   error messages are generated and compilation is immediately terminated.
@@ -2516,31 +2589,31 @@ format:
 
 .. index:: -gnatQ  (gcc)
 
-:samp:`-gnatQ`
+:switch:`-gnatQ`
   In normal operation mode, the :file:`ALI` file is not generated if any
-  illegalities are detected in the program. The use of *-gnatQ* forces
+  illegalities are detected in the program. The use of :switch:`-gnatQ` forces
   generation of the :file:`ALI` file. This file is marked as being in
   error, so it cannot be used for binding purposes, but it does contain
   reasonably complete cross-reference information, and thus may be useful
   for use by tools (e.g., semantic browsing tools or integrated development
   environments) that are driven from the :file:`ALI` file. This switch
-  implies *-gnatq*, since the semantic phase must be run to get a
+  implies :switch:`-gnatq`, since the semantic phase must be run to get a
   meaningful ALI file.
 
-  In addition, if *-gnatt* is also specified, then the tree file is
+  In addition, if :switch:`-gnatt` is also specified, then the tree file is
   generated even if there are illegalities. It may be useful in this case
-  to also specify *-gnatq* to ensure that full semantic processing
+  to also specify :switch:`-gnatq` to ensure that full semantic processing
   occurs. The resulting tree file can be processed by ASIS, for the purpose
   of providing partial information about illegal units, but if the error
   causes the tree to be badly malformed, then ASIS may crash during the
   analysis.
 
-  When *-gnatQ* is used and the generated :file:`ALI` file is marked as
-  being in error, *gnatmake* will attempt to recompile the source when it
-  finds such an :file:`ALI` file, including with switch *-gnatc*.
+  When :switch:`-gnatQ` is used and the generated :file:`ALI` file is marked as
+  being in error, ``gnatmake`` will attempt to recompile the source when it
+  finds such an :file:`ALI` file, including with switch :switch:`-gnatc`.
 
-  Note that *-gnatQ* has no effect if *-gnats* is specified,
-  since ALI files are never generated if *-gnats* is set.
+  Note that :switch:`-gnatQ` has no effect if :switch:`-gnats` is specified,
+  since ALI files are never generated if :switch:`-gnats` is set.
 
 
 .. _Warning_Message_Control:
@@ -2571,7 +2644,7 @@ GNAT considers a large number of situations as appropriate
 for the generation of warning messages. As always, warnings are not
 definite indications of errors. For example, if you do an out-of-range
 assignment with the deliberate intention of raising a
-`Constraint_Error` exception, then the warning that may be
+``Constraint_Error`` exception, then the warning that may be
 issued does not indicate an error. Some of the situations for which GNAT
 issues warnings (at least some of the time) are given in the following
 list. This list is not complete, and new warnings are often added to
@@ -2601,15 +2674,15 @@ of the kinds of warnings that are generated.
 
 * Variables that are referenced before being initialized
 
-* Task entries with no corresponding `accept` statement
+* Task entries with no corresponding ``accept`` statement
 
-* Duplicate accepts for the same task entry in a `select`
+* Duplicate accepts for the same task entry in a ``select``
 
 * Objects that take too much storage
 
 * Unchecked conversion between types of differing sizes
 
-* Missing `return` statement along some execution path in a function
+* Missing ``return`` statement along some execution path in a function
 
 * Incorrect (unrecognized) pragmas
 
@@ -2637,9 +2710,9 @@ of the kinds of warnings that are generated.
 
 * Unused |with| clauses
 
-* `Bit_Order` usage that does not have any effect
+* ``Bit_Order`` usage that does not have any effect
 
-* `Standard.Duration` used to resolve universal fixed expression
+* ``Standard.Duration`` used to resolve universal fixed expression
 
 * Dereference of possibly null value
 
@@ -2651,7 +2724,7 @@ of the kinds of warnings that are generated.
 
 * Unreferenced or unmodified variables. Note that a special
   exemption applies to variables which contain any of the substrings
-  `DISCARD, DUMMY, IGNORE, JUNK, UNUSED`, in any casing. Such variables
+  ``DISCARD, DUMMY, IGNORE, JUNK, UNUSED``, in any casing. Such variables
   are considered likely to be intentionally used in a situation where
   otherwise a warning would be given, so warnings of this kind are
   always suppressed for such variables.
@@ -2672,7 +2745,7 @@ of the kinds of warnings that are generated.
 
 * Access before elaboration detected at compile time
 
-* A range in a `for` loop that is known to be null or might be null
+* A range in a ``for`` loop that is known to be null or might be null
 
 
 The following section lists compiler switches that are available
@@ -2684,68 +2757,74 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwa  (gcc)
 
-:samp:`-gnatwa`
+:switch:`-gnatwa`
   *Activate most optional warnings.*
 
-  This switch activates most optional warning messages.  See the remaining list
+  This switch activates most optional warning messages. See the remaining list
   in this section for details on optional warning messages that can be
   individually controlled.  The warnings that are not turned on by this
   switch are:
 
 
-  * :samp:`-gnatwd` (implicit dereferencing)
+  * :switch:`-gnatwd` (implicit dereferencing)
+
+  * :switch:`-gnatw.d` (tag warnings with -gnatw switch)
+
+  * :switch:`-gnatwh` (hiding)
 
-  * :samp:`-gnatw.d` (tag warnings with -gnatw switch)
+  * :switch:`-gnatw.h` (holes in record layouts)
 
-  * :samp:`-gnatwh` (hiding)
+  * :switch:`-gnatw.j` (late primitives of tagged types)
 
-  * :samp:`-gnatw.h` (holes in record layouts)
+  * :switch:`-gnatw.k` (redefinition of names in standard)
 
-  * :samp:`-gnatw.k` (redefinition of names in standard)
+  * :switch:`-gnatwl` (elaboration warnings)
 
-  * :samp:`-gnatwl` (elaboration warnings)
+  * :switch:`-gnatw.l` (inherited aspects)
 
-  * :samp:`-gnatw.l` (inherited aspects)
+  * :switch:`-gnatw.n` (atomic synchronization)
 
-  * :samp:`-gnatw.n` (atomic synchronization)
+  * :switch:`-gnatwo` (address clause overlay)
 
-  * :samp:`-gnatwo` (address clause overlay)
+  * :switch:`-gnatw.o` (values set by out parameters ignored)
 
-  * :samp:`-gnatw.o` (values set by out parameters ignored)
+  * :switch:`-gnatw.q` (questionable layout of record types)
 
-  * :samp:`-gnatw.s` (overridden size clause)
+  * :switch:`-gnatw_r` (out-of-order record representation clauses)
 
-  * :samp:`-gnatwt` (tracking of deleted conditional code)
+  * :switch:`-gnatw.s` (overridden size clause)
 
-  * :samp:`-gnatw.u` (unordered enumeration)
+  * :switch:`-gnatwt` (tracking of deleted conditional code)
 
-  * :samp:`-gnatw.w` (use of Warnings Off)
+  * :switch:`-gnatw.u` (unordered enumeration)
 
-  * :samp:`-gnatw.y` (reasons for package needing body)
+  * :switch:`-gnatw.w` (use of Warnings Off)
+
+  * :switch:`-gnatw.y` (reasons for package needing body)
 
   All other optional warnings are turned on.
 
 
 .. index:: -gnatwA  (gcc)
 
-:samp:`-gnatwA`
+:switch:`-gnatwA`
   *Suppress all optional errors.*
 
   This switch suppresses all optional warning messages, see remaining list
   in this section for details on optional warning messages that can be
-  individually controlled. Note that unlike switch *-gnatws*, the
-  use of switch *-gnatwA* does not suppress warnings that are
+  individually controlled. Note that unlike switch :switch:`-gnatws`, the
+  use of switch :switch:`-gnatwA` does not suppress warnings that are
   normally given unconditionally and cannot be individually controlled
   (for example, the warning about a missing exit path in a function).
-  Also, again unlike switch *-gnatws*, warnings suppressed by
-  the use of switch *-gnatwA* can be individually turned back
-  on. For example the use of switch *-gnatwA* followed by
-  switch *-gnatwd* will suppress all optional warnings except
+  Also, again unlike switch :switch:`-gnatws`, warnings suppressed by
+  the use of switch :switch:`-gnatwA` can be individually turned back
+  on. For example the use of switch :switch:`-gnatwA` followed by
+  switch :switch:`-gnatwd` will suppress all optional warnings except
   the warnings for implicit dereferencing.
 
 .. index:: -gnatw.a  (gcc)
 
-:samp:`-gnatw.a`
+:switch:`-gnatw.a`
   *Activate warnings on failing assertions.*
 
   .. index:: Assert failures
@@ -2758,7 +2837,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.A  (gcc)
 
-:samp:`-gnatw.A`
+:switch:`-gnatw.A`
   *Suppress warnings on failing assertions.*
 
   .. index:: Assert failures
@@ -2767,9 +2846,32 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   compile time that the assertion will fail.
 
 
+.. index:: -gnatw_a
+
+:switch:`-gnatw_a`
+  *Activate warnings on anonymous allocators.*
+
+  .. index:: Anonymous allocators
+
+  This switch activates warnings for allocators of anonymous access types,
+  which can involve run-time accessibility checks and lead to unexpected
+  accessibility violations. For more details on the rules involved, see
+  RM 3.10.2 (14).
+
+
+.. index:: -gnatw_A
+
+:switch:`-gnatw_A`
+  *Supress warnings on anonymous allocators.*
+
+  .. index:: Anonymous allocators
+
+  This switch suppresses warnings for anonymous access type allocators.
+
+
 .. index:: -gnatwb  (gcc)
 
-:samp:`-gnatwb`
+:switch:`-gnatwb`
   *Activate warnings on bad fixed values.*
 
   .. index:: Bad fixed values
@@ -2789,7 +2891,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwB  (gcc)
 
-:samp:`-gnatwB`
+:switch:`-gnatwB`
   *Suppress warnings on bad fixed values.*
 
   This switch suppresses warnings for static fixed-point expressions whose
@@ -2798,7 +2900,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.b  (gcc)
 
-:samp:`-gnatw.b`
+:switch:`-gnatw.b`
   *Activate warnings on biased representation.*
 
   .. index:: Biased representation
@@ -2811,7 +2913,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwB  (gcc)
 
-:samp:`-gnatw.B`
+:switch:`-gnatw.B`
   *Suppress warnings on biased representation.*
 
   This switch suppresses warnings for representation clauses that force the use
@@ -2820,7 +2922,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwc  (gcc)
 
-:samp:`-gnatwc`
+:switch:`-gnatwc`
   *Activate warnings on conditionals.*
 
   .. index:: Conditionals, constant
@@ -2839,7 +2941,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   If the compiler can tell that only the equality condition is possible,
   then it will warn that the '>' or '<' part of the test
   is useless and that the operator could be replaced by '='.
-  An example would be comparing a `Natural` variable <= 0.
+  An example would be comparing a ``Natural`` variable <= 0.
 
   This warning option also generates warnings if
   one or both tests is optimized away in a membership test for integer
@@ -2847,12 +2949,12 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   enumeration types are not included, since it is common for such tests
   to include an end point.
 
-  This warning can also be turned on using *-gnatwa*.
+  This warning can also be turned on using :switch:`-gnatwa`.
 
 
 .. index:: -gnatwC  (gcc)
 
-:samp:`-gnatwC`
+:switch:`-gnatwC`
   *Suppress warnings on conditionals.*
 
   This switch suppresses warnings for conditional expressions used in
@@ -2861,7 +2963,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.c  (gcc)
 
-:samp:`-gnatw.c`
+:switch:`-gnatw.c`
   *Activate warnings on missing component clauses.*
 
   .. index:: Component clause, missing
@@ -2872,32 +2974,56 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   component for which no component clause is present.
 
 
-.. index:: -gnatwC  (gcc)
+.. index:: -gnatw.C  (gcc)
 
-:samp:`-gnatw.C`
+:switch:`-gnatw.C`
   *Suppress warnings on missing component clauses.*
 
   This switch suppresses warnings for record components that are
   missing a component clause in the situation described above.
 
 
+.. index:: -gnatw_c  (gcc)
+
+:switch:`-gnatw_c`
+  *Activate warnings on unknown condition in Compile_Time_Warning.*
+
+  .. index:: Compile_Time_Warning
+  .. index:: Compile_Time_Error
+
+  This switch activates warnings on a pragma Compile_Time_Warning
+  or Compile_Time_Error whose condition has a value that is not
+  known at compile time.
+  The default is that such warnings are generated.
+
+
+.. index:: -gnatw_C  (gcc)
+
+:switch:`-gnatw_C`
+  *Suppress warnings on missing component clauses.*
+
+  This switch supresses warnings on a pragma Compile_Time_Warning
+  or Compile_Time_Error whose condition has a value that is not
+  known at compile time.
+
+
 .. index:: -gnatwd  (gcc)
 
-:samp:`-gnatwd`
+:switch:`-gnatwd`
   *Activate warnings on implicit dereferencing.*
 
   If this switch is set, then the use of a prefix of an access type
   in an indexed component, slice, or selected component without an
-  explicit `.all` will generate a warning. With this warning
+  explicit ``.all`` will generate a warning. With this warning
   enabled, access checks occur only at points where an explicit
-  `.all` appears in the source code (assuming no warnings are
+  ``.all`` appears in the source code (assuming no warnings are
   generated as a result of this switch). The default is that such
   warnings are not generated.
 
 
 .. index:: -gnatwD  (gcc)
 
-:samp:`-gnatwD`
+:switch:`-gnatwD`
   *Suppress warnings on implicit dereferencing.*
 
   .. index:: Implicit dereferencing
@@ -2910,30 +3036,30 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.d  (gcc)
 
-:samp:`-gnatw.d`
+:switch:`-gnatw.d`
   *Activate tagging of warning and info messages.*
 
   If this switch is set, then warning messages are tagged, with one of the
   following strings:
 
     - *[-gnatw?]*
-      Used to tag warnings controlled by the switch *-gnatwx* where x
+      Used to tag warnings controlled by the switch :switch:`-gnatwx` where x
       is a letter a-z.
 
 
     - *[-gnatw.?]*
-      Used to tag warnings controlled by the switch *-gnatw.x* where x
+      Used to tag warnings controlled by the switch :switch:`-gnatw.x` where x
       is a letter a-z.
 
 
     - *[-gnatel]*
       Used to tag elaboration information (info) messages generated when the
-      static model of elaboration is used and the *-gnatel* switch is set.
+      static model of elaboration is used and the :switch:`-gnatel` switch is set.
 
 
     - *[restriction warning]*
       Used to tag warning messages for restriction violations, activated by use
-      of the pragma *Restriction_Warnings*.
+      of the pragma ``Restriction_Warnings``.
 
 
     - *[warning-as-error]*
@@ -2945,24 +3071,24 @@ of the pragma in the :title:`GNAT_Reference_manual`).
     - *[enabled by default]*
       Used to tag all other warnings that are always given by default, unless
       warnings are completely suppressed using pragma *Warnings(Off)* or
-      the switch *-gnatws*.
+      the switch :switch:`-gnatws`.
 
 
 
 .. index:: -gnatw.d  (gcc)
 
-:samp:`-gnatw.D`
+:switch:`-gnatw.D`
   *Deactivate tagging of warning and info messages messages.*
 
   If this switch is set, then warning messages return to the default
   mode in which warnings and info messages are not tagged as described above for
-  `-gnatw.d`.
+  :switch:`-gnatw.d`.
 
 
 .. index:: -gnatwe  (gcc)
 .. index:: Warnings, treat as error
 
-:samp:`-gnatwe`
+:switch:`-gnatwe`
   *Treat warnings and style checks as errors.*
 
   This switch causes warning messages and style check messages to be
@@ -2976,48 +3102,58 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.e  (gcc)
 
-:samp:`-gnatw.e`
+:switch:`-gnatw.e`
   *Activate every optional warning.*
 
   .. index:: Warnings, activate every optional warning
 
   This switch activates all optional warnings, including those which
-  are not activated by `-gnatwa`. The use of this switch is not
+  are not activated by :switch:`-gnatwa`. The use of this switch is not
   recommended for normal use. If you turn this switch on, it is almost
   certain that you will get large numbers of useless warnings. The
-  warnings that are excluded from `-gnatwa` are typically highly
+  warnings that are excluded from :switch:`-gnatwa` are typically highly
   specialized warnings that are suitable for use only in code that has
   been specifically designed according to specialized coding rules.
 
 
+.. index:: -gnatwE  (gcc)
+.. index:: Warnings, treat as error
+
+:switch:`-gnatwE`
+  *Treat all run-time exception warnings as errors.*
+
+  This switch causes warning messages regarding errors that will be raised
+  during run-time execution to be treated as errors.
+
+
 .. index:: -gnatwf  (gcc)
 
-:samp:`-gnatwf`
+:switch:`-gnatwf`
   *Activate warnings on unreferenced formals.*
 
   .. index:: Formals, unreferenced
 
   This switch causes a warning to be generated if a formal parameter
   is not referenced in the body of the subprogram. This warning can
-  also be turned on using *-gnatwu*. The
+  also be turned on using :switch:`-gnatwu`. The
   default is that these warnings are not generated.
 
 
 .. index:: -gnatwF  (gcc)
 
-:samp:`-gnatwF`
+:switch:`-gnatwF`
   *Suppress warnings on unreferenced formals.*
 
   This switch suppresses warnings for unreferenced formal
   parameters. Note that the
-  combination *-gnatwu* followed by *-gnatwF* has the
+  combination :switch:`-gnatwu` followed by :switch:`-gnatwF` has the
   effect of warning on unreferenced entities other than subprogram
   formals.
 
 
 .. index:: -gnatwg  (gcc)
 
-:samp:`-gnatwg`
+:switch:`-gnatwg`
   *Activate warnings on unrecognized pragmas.*
 
   .. index:: Pragmas, unrecognized
@@ -3031,7 +3167,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwG  (gcc)
 
-:samp:`-gnatwG`
+:switch:`-gnatwG`
   *Suppress warnings on unrecognized pragmas.*
 
   This switch suppresses warnings for unrecognized pragmas.
@@ -3039,18 +3175,18 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.g  (gcc)
 
-:samp:`-gnatw.g`
+:switch:`-gnatw.g`
   *Warnings used for GNAT sources.*
 
   This switch sets the warning categories that are used by the standard
   GNAT style. Currently this is equivalent to
-  *-gnatwAao.sI.C.V.X*
+  :switch:`-gnatwAao.q.s.CI.V.X.Z`
   but more warnings may be added in the future without advanced notice.
 
 
 .. index:: -gnatwh  (gcc)
 
-:samp:`-gnatwh`
+:switch:`-gnatwh`
   *Activate warnings on hiding.*
 
   .. index:: Hiding of Declarations
@@ -3063,7 +3199,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwH  (gcc)
 
-:samp:`-gnatwH`
+:switch:`-gnatwH`
   *Suppress warnings on hiding.*
 
   This switch suppresses warnings on hiding declarations.
@@ -3071,7 +3207,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.h  (gcc)
 
-:samp:`-gnatw.h`
+:switch:`-gnatw.h`
   *Activate warnings on holes/gaps in records.*
 
   .. index:: Record Representation (gaps)
@@ -3084,7 +3220,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.H  (gcc)
 
-:samp:`-gnatw.H`
+:switch:`-gnatw.H`
   *Suppress warnings on holes/gaps in records.*
 
   This switch suppresses warnings on component clauses in record
@@ -3093,13 +3229,13 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwi  (gcc)
 
-:samp:`-gnatwi`
+:switch:`-gnatwi`
   *Activate warnings on implementation units.*
 
   This switch activates warnings for a |with| of an internal GNAT
-  implementation unit, defined as any unit from the `Ada`,
-  `Interfaces`, `GNAT`,
-  or `System`
+  implementation unit, defined as any unit from the ``Ada``,
+  ``Interfaces``, ``GNAT``,
+  or ``System``
   hierarchies that is not
   documented in either the Ada Reference Manual or the GNAT
   Programmer's Reference Manual. Such units are intended only
@@ -3109,7 +3245,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwI  (gcc)
 
-:samp:`-gnatwI`
+:switch:`-gnatwI`
   *Disable warnings on implementation units.*
 
   This switch disables warnings for a |with| of an internal GNAT
@@ -3118,7 +3254,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.i  (gcc)
 
-:samp:`-gnatw.i`
+:switch:`-gnatw.i`
   *Activate warnings on overlapping actuals.*
 
   This switch enables a warning on statically detectable overlapping actuals in
@@ -3128,7 +3264,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.I  (gcc)
 
-:samp:`-gnatw.I`
+:switch:`-gnatw.I`
   *Disable warnings on overlapping actuals.*
 
   This switch disables warnings on overlapping actuals in a call..
@@ -3136,7 +3272,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwj  (gcc)
 
-:samp:`-gnatwj`
+:switch:`-gnatwj`
   *Activate warnings on obsolescent features (Annex J).*
 
   .. index:: Features, obsolescent
@@ -3144,39 +3280,57 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   .. index:: Obsolescent features
 
   If this warning option is activated, then warnings are generated for
-  calls to subprograms marked with `pragma Obsolescent` and
+  calls to subprograms marked with ``pragma Obsolescent`` and
   for use of features in Annex J of the Ada Reference Manual. In the
   case of Annex J, not all features are flagged. In particular use
-  of the renamed packages (like `Text_IO`) and use of package
-  `ASCII` are not flagged, since these are very common and
+  of the renamed packages (like ``Text_IO``) and use of package
+  ``ASCII`` are not flagged, since these are very common and
   would generate many annoying positive warnings. The default is that
   such warnings are not generated.
 
   In addition to the above cases, warnings are also generated for
   GNAT features that have been provided in past versions but which
   have been superseded (typically by features in the new Ada standard).
-  For example, `pragma Ravenscar` will be flagged since its
-  function is replaced by `pragma Profile(Ravenscar)`, and
-  `pragma Interface_Name` will be flagged since its function
-  is replaced by `pragma Import`.
+  For example, ``pragma Ravenscar`` will be flagged since its
+  function is replaced by ``pragma Profile(Ravenscar)``, and
+  ``pragma Interface_Name`` will be flagged since its function
+  is replaced by ``pragma Import``.
 
   Note that this warning option functions differently from the
-  restriction `No_Obsolescent_Features` in two respects.
+  restriction ``No_Obsolescent_Features`` in two respects.
   First, the restriction applies only to annex J features.
-  Second, the restriction does flag uses of package `ASCII`.
+  Second, the restriction does flag uses of package ``ASCII``.
 
 
 .. index:: -gnatwJ  (gcc)
 
-:samp:`-gnatwJ`
+:switch:`-gnatwJ`
   *Suppress warnings on obsolescent features (Annex J).*
 
   This switch disables warnings on use of obsolescent features.
 
 
+.. index:: -gnatw.j  (gcc)
+
+:switch:`-gnatw.j`
+  *Activate warnings on late declarations of tagged type primitives.*
+
+  This switch activates warnings on visible primitives added to a
+  tagged type after deriving a private extension from it.
+
+
+.. index:: -gnatw.J  (gcc)
+
+:switch:`-gnatw.J`
+  *Suppress warnings on late declarations of tagged type primitives.*
+
+  This switch suppresses warnings on visible primitives added to a
+  tagged type after deriving a private extension from it.
+
+
 .. index:: -gnatwk  (gcc)
 
-:samp:`-gnatwk`
+:switch:`-gnatwk`
   *Activate warnings on variables that could be constants.*
 
   This switch activates warnings for variables that are initialized but
@@ -3186,7 +3340,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwK  (gcc)
 
-:samp:`-gnatwK`
+:switch:`-gnatwK`
   *Suppress warnings on variables that could be constants.*
 
   This switch disables warnings on variables that could be declared constants.
@@ -3194,7 +3348,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.k  (gcc)
 
-:samp:`-gnatw.k`
+:switch:`-gnatw.k`
   *Activate warnings on redefinition of names in standard.*
 
   This switch activates warnings for declarations that declare a name that
@@ -3207,7 +3361,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwK  (gcc)
 
-:samp:`-gnatw.K`
+:switch:`-gnatw.K`
   *Suppress warnings on redefinition of names in standard.*
 
   This switch activates warnings for declarations that declare a name that
@@ -3216,15 +3370,15 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwl  (gcc)
 
-:samp:`-gnatwl`
+:switch:`-gnatwl`
   *Activate warnings for elaboration pragmas.*
 
   .. index:: Elaboration, warnings
 
   This switch activates warnings for possible elaboration problems,
   including suspicious use
-  of `Elaborate` pragmas, when using the static elaboration model, and
-  possible situations that may raise `Program_Error` when using the
+  of ``Elaborate`` pragmas, when using the static elaboration model, and
+  possible situations that may raise ``Program_Error`` when using the
   dynamic elaboration model.
   See the section in this guide on elaboration checking for further details.
   The default is that such warnings
@@ -3233,7 +3387,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwL  (gcc)
 
-:samp:`-gnatwL`
+:switch:`-gnatwL`
   *Suppress warnings for elaboration pragmas.*
 
   This switch suppresses warnings for possible elaboration problems.
@@ -3241,7 +3395,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.l  (gcc)
 
-:samp:`-gnatw.l`
+:switch:`-gnatw.l`
   *List inherited aspects.*
 
   This switch causes the compiler to list inherited invariants,
@@ -3251,7 +3405,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.L  (gcc)
 
-:samp:`-gnatw.L`
+:switch:`-gnatw.L`
   *Suppress listing of inherited aspects.*
 
   This switch suppresses listing of inherited aspects.
@@ -3259,7 +3413,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwm  (gcc)
 
-:samp:`-gnatwm`
+:switch:`-gnatwm`
   *Activate warnings on modified but unreferenced variables.*
 
   This switch activates warnings for variables that are assigned (using
@@ -3272,7 +3426,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwM  (gcc)
 
-:samp:`-gnatwM`
+:switch:`-gnatwM`
   *Disable warnings on modified but unreferenced variables.*
 
   This switch disables warnings for variables that are assigned or
@@ -3281,7 +3435,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.m  (gcc)
 
-:samp:`-gnatw.m`
+:switch:`-gnatw.m`
   *Activate warnings on suspicious modulus values.*
 
   This switch activates warnings for modulus values that seem suspicious.
@@ -3295,7 +3449,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.M  (gcc)
 
-:samp:`-gnatw.M`
+:switch:`-gnatw.M`
   *Disable warnings on suspicious modulus values.*
 
   This switch disables warnings for suspicious modulus values.
@@ -3303,22 +3457,22 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwn  (gcc)
 
-:samp:`-gnatwn`
+:switch:`-gnatwn`
   *Set normal warnings mode.*
 
   This switch sets normal warning mode, in which enabled warnings are
   issued and treated as warnings rather than errors. This is the default
-  mode. the switch *-gnatwn* can be used to cancel the effect of
-  an explicit *-gnatws* or
-  *-gnatwe*. It also cancels the effect of the
-  implicit *-gnatwe* that is activated by the
-  use of *-gnatg*.
+  mode. the switch :switch:`-gnatwn` can be used to cancel the effect of
+  an explicit :switch:`-gnatws` or
+  :switch:`-gnatwe`. It also cancels the effect of the
+  implicit :switch:`-gnatwe` that is activated by the
+  use of :switch:`-gnatg`.
 
 
 .. index:: -gnatw.n  (gcc)
 .. index:: Atomic Synchronization, warnings
 
-:samp:`-gnatw.n`
+:switch:`-gnatw.n`
   *Activate warnings on atomic synchronization.*
 
   This switch actives warnings when an access to an atomic variable
@@ -3327,7 +3481,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.N  (gcc)
 
-:samp:`-gnatw.N`
+:switch:`-gnatw.N`
   *Suppress warnings on atomic synchronization.*
 
   .. index:: Atomic Synchronization, warnings
@@ -3339,7 +3493,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwo  (gcc)
 .. index:: Address Clauses, warnings
 
-:samp:`-gnatwo`
+:switch:`-gnatwo`
   *Activate warnings on address clause overlays.*
 
   This switch activates warnings for possibly unintended initialization
@@ -3349,7 +3503,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwO  (gcc)
 
-:samp:`-gnatwO`
+:switch:`-gnatwO`
   *Suppress warnings on address clause overlays.*
 
   This switch suppresses warnings on possibly unintended initialization
@@ -3359,7 +3513,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.o  (gcc)
 
-:samp:`-gnatw.o`
+:switch:`-gnatw.o`
   *Activate warnings on modified but unreferenced out parameters.*
 
   This switch activates warnings for variables that are modified by using
@@ -3375,7 +3529,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.O  (gcc)
 
-:samp:`-gnatw.O`
+:switch:`-gnatw.O`
   *Disable warnings on modified but unreferenced out parameters.*
 
   This switch suppresses warnings for variables that are modified by using
@@ -3386,11 +3540,11 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwp  (gcc)
 .. index:: Inlining, warnings
 
-:samp:`-gnatwp`
+:switch:`-gnatwp`
   *Activate warnings on ineffective pragma Inlines.*
 
   This switch activates warnings for failure of front end inlining
-  (activated by *-gnatN*) to inline a particular call. There are
+  (activated by :switch:`-gnatN`) to inline a particular call. There are
   many reasons for not being able to inline a call, including most
   commonly that the call is too complex to inline. The default is
   that such warnings are not given.
@@ -3400,7 +3554,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwP  (gcc)
 
-:samp:`-gnatwP`
+:switch:`-gnatwP`
   *Suppress warnings on ineffective pragma Inlines.*
 
   This switch suppresses warnings on ineffective pragma Inlines. If the
@@ -3411,7 +3565,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.p  (gcc)
 .. index:: Parameter order, warnings
 
-:samp:`-gnatw.p`
+:switch:`-gnatw.p`
   *Activate warnings on parameter ordering.*
 
   This switch activates warnings for cases of suspicious parameter
@@ -3425,7 +3579,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.P  (gcc)
 
-:samp:`-gnatw.P`
+:switch:`-gnatw.P`
   *Suppress warnings on parameter ordering.*
 
   This switch suppresses warnings on cases of suspicious parameter
@@ -3435,7 +3589,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwq  (gcc)
 .. index:: Parentheses, warnings
 
-:samp:`-gnatwq`
+:switch:`-gnatwq`
   *Activate warnings on questionable missing parentheses.*
 
   This switch activates warnings for cases where parentheses are not used and
@@ -3450,16 +3604,66 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwQ  (gcc)
 
-:samp:`-gnatwQ`
+:switch:`-gnatwQ`
   *Suppress warnings on questionable missing parentheses.*
 
   This switch suppresses warnings for cases where the association is not
   clear and the use of parentheses is preferred.
 
 
+.. index:: -gnatw.q  (gcc)
+.. index:: Layout, warnings
+
+:switch:`-gnatw.q`
+  *Activate warnings on questionable layout of record types.*
+
+  This switch activates warnings for cases where the default layout of
+  a record type, that is to say the layout of its components in textual
+  order of the source code, would very likely cause inefficiencies in
+  the code generated by the compiler, both in terms of space and speed
+  during execution. One warning is issued for each problematic component
+  without representation clause in the nonvariant part and then in each
+  variant recursively, if any.
+
+  The purpose of these warnings is neither to prescribe an optimal layout
+  nor to force the use of representation clauses, but rather to get rid of
+  the most blatant inefficiencies in the layout. Therefore, the default
+  layout is matched against the following synthetic ordered layout and
+  the deviations are flagged on a component-by-component basis:
+
+  * first all components or groups of components whose length is fixed
+    and a multiple of the storage unit,
+
+  * then the remaining components whose length is fixed and not a multiple
+    of the storage unit,
+
+  * then the remaining components whose length doesn't depend on discriminants
+    (that is to say, with variable but uniform length for all objects),
+
+  * then all components whose length depends on discriminants,
+
+  * finally the variant part (if any),
+
+  for the nonvariant part and for each variant recursively, if any.
+
+  The exact wording of the warning depends on whether the compiler is allowed
+  to reorder the components in the record type or precluded from doing it by
+  means of pragma ``No_Component_Reordering``.
+
+  The default is that these warnings are not given.
+
+.. index:: -gnatw.Q  (gcc)
+
+:switch:`-gnatw.Q`
+  *Suppress warnings on questionable layout of record types.*
+
+  This switch suppresses warnings for cases where the default layout of
+  a record type would very likely cause inefficiencies.
+
+
 .. index:: -gnatwr  (gcc)
 
-:samp:`-gnatwr`
+:switch:`-gnatwr`
   *Activate warnings on redundant constructs.*
 
   This switch activates warnings for redundant constructs. The following
@@ -3469,10 +3673,10 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
   * Type conversion that converts an expression to its own type.
 
-  * Use of the attribute `Base` where `typ'Base` is the same
-    as `typ`.
+  * Use of the attribute ``Base`` where ``typ'Base`` is the same
+    as ``typ``.
 
-  * Use of pragma `Pack` when all components are placed by a record
+  * Use of pragma ``Pack`` when all components are placed by a record
     representation clause.
 
   * Exception handler containing only a reraise statement (raise with no
@@ -3481,14 +3685,15 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   * Use of the operator abs on an operand that is known at compile time
     to be non-negative
 
-  * Comparison of boolean expressions to an explicit True value.
+  * Comparison of an object or (unary or binary) operation of boolean type to
+    an explicit True value.
 
   The default is that warnings for redundant constructs are not given.
 
 
 .. index:: -gnatwR  (gcc)
 
-:samp:`-gnatwR`
+:switch:`-gnatwR`
   *Suppress warnings on redundant constructs.*
 
   This switch suppresses warnings for redundant constructs.
@@ -3496,7 +3701,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.r  (gcc)
 
-:samp:`-gnatw.r`
+:switch:`-gnatw.r`
   *Activate warnings for object renaming function.*
 
   This switch activates warnings for an object renaming that renames a
@@ -3505,17 +3710,34 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   warnings are given.
 
 
-.. index:: -gnatwT  (gcc)
+.. index:: -gnatw.R  (gcc)
 
-:samp:`-gnatw.R`
+:switch:`-gnatw.R`
   *Suppress warnings for object renaming function.*
 
   This switch suppresses warnings for object renaming function.
 
 
+.. index:: -gnatw_r  (gcc)
+
+:switch:`-gnatw_r`
+  *Activate warnings for out-of-order record representation clauses.*
+
+  This switch activates warnings for record representation clauses,
+  if the order of component declarations, component clauses,
+  and bit-level layout do not all agree.
+  The default is that these warnings are not given.
+
+
+.. index:: -gnatw_R  (gcc)
+
+:switch:`-gnatw_R`
+  *Suppress warnings for out-of-order record representation clauses.*
+
+
 .. index:: -gnatws  (gcc)
 
-:samp:`-gnatws`
+:switch:`-gnatws`
   *Suppress all warnings.*
 
   This switch completely suppresses the
@@ -3523,19 +3745,19 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   both warnings that can be controlled by switches described in this
   section, and those that are normally given unconditionally. The
   effect of this suppress action can only be cancelled by a subsequent
-  use of the switch *-gnatwn*.
+  use of the switch :switch:`-gnatwn`.
 
-  Note that switch *-gnatws* does not suppress
-  warnings from the *gcc* back end.
-  To suppress these back end warnings as well, use the switch *-w*
-  in addition to *-gnatws*. Also this switch has no effect on the
+  Note that switch :switch:`-gnatws` does not suppress
+  warnings from the ``gcc`` back end.
+  To suppress these back end warnings as well, use the switch :switch:`-w`
+  in addition to :switch:`-gnatws`. Also this switch has no effect on the
   handling of style check messages.
 
 
 .. index:: -gnatw.s  (gcc)
 .. index:: Record Representation (component sizes)
 
-:samp:`-gnatw.s`
+:switch:`-gnatw.s`
   *Activate warnings on overridden size clauses.*
 
   This switch activates warnings on component clauses in record
@@ -3548,7 +3770,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.S  (gcc)
 
-:samp:`-gnatw.S`
+:switch:`-gnatw.S`
   *Suppress warnings on overridden size clauses.*
 
   This switch suppresses warnings on component clauses in record
@@ -3560,7 +3782,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: Deactivated code, warnings
 .. index:: Deleted code, warnings
 
-:samp:`-gnatwt`
+:switch:`-gnatwt`
   *Activate warnings for tracking of deleted conditional code.*
 
   This switch activates warnings for tracking of code in conditionals (IF and
@@ -3571,7 +3793,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwT  (gcc)
 
-:samp:`-gnatwT`
+:switch:`-gnatwT`
   *Suppress warnings for tracking of deleted conditional code.*
 
   This switch suppresses warnings for tracking of deleted conditional code.
@@ -3579,13 +3801,13 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.t  (gcc)
 
-:samp:`-gnatw.t`
+:switch:`-gnatw.t`
   *Activate warnings on suspicious contracts.*
 
   This switch activates warnings on suspicious contracts. This includes
-  warnings on suspicious postconditions (whether a pragma `Postcondition` or a
-  `Post` aspect in Ada 2012) and suspicious contract cases (pragma or aspect
-  `Contract_Cases`). A function postcondition or contract case is suspicious
+  warnings on suspicious postconditions (whether a pragma ``Postcondition`` or a
+  ``Post`` aspect in Ada 2012) and suspicious contract cases (pragma or aspect
+  ``Contract_Cases``). A function postcondition or contract case is suspicious
   when no postcondition or contract case for this function mentions the result
   of the function.  A procedure postcondition or contract case is suspicious
   when it only refers to the pre-state of the procedure, because in that case
@@ -3597,7 +3819,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.T  (gcc)
 
-:samp:`-gnatw.T`
+:switch:`-gnatw.T`
   *Suppress warnings on suspicious contracts.*
 
   This switch suppresses warnings on suspicious contracts.
@@ -3605,7 +3827,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwu  (gcc)
 
-:samp:`-gnatwu`
+:switch:`-gnatwu`
   *Activate warnings on unused entities.*
 
   This switch activates warnings to be generated for entities that
@@ -3613,8 +3835,8 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   and not
   referenced. In the case of packages, a warning is also generated if
   no entities in the package are referenced. This means that if a with'ed
-  package is referenced but the only references are in `use`
-  clauses or `renames`
+  package is referenced but the only references are in ``use``
+  clauses or ``renames``
   declarations, a warning is still generated. A warning is also generated
   for a generic package that is |withed| but never instantiated.
   In the case where a package or subprogram body is compiled, and there
@@ -3624,38 +3846,38 @@ of the pragma in the :title:`GNAT_Reference_manual`).
   |with| can be moved to the body. The default is that
   such warnings are not generated.
   This switch also activates warnings on unreferenced formals
-  (it includes the effect of *-gnatwf*).
+  (it includes the effect of :switch:`-gnatwf`).
 
 
 .. index:: -gnatwU  (gcc)
 
-:samp:`-gnatwU`
+:switch:`-gnatwU`
   *Suppress warnings on unused entities.*
 
   This switch suppresses warnings for unused entities and packages.
   It also turns off warnings on unreferenced formals (and thus includes
-  the effect of *-gnatwF*).
+  the effect of :switch:`-gnatwF`).
 
 
 .. index:: -gnatw.u  (gcc)
 
-:samp:`-gnatw.u`
+:switch:`-gnatw.u`
   *Activate warnings on unordered enumeration types.*
 
   This switch causes enumeration types to be considered as conceptually
-  unordered, unless an explicit pragma `Ordered` is given for the type.
+  unordered, unless an explicit pragma ``Ordered`` is given for the type.
   The effect is to generate warnings in clients that use explicit comparisons
   or subranges, since these constructs both treat objects of the type as
   ordered. (A *client* is defined as a unit that is other than the unit in
   which the type is declared, or its body or subunits.) Please refer to
-  the description of pragma `Ordered` in the
+  the description of pragma ``Ordered`` in the
   :title:`GNAT Reference Manual` for further details.
   The default is that such warnings are not generated.
 
 
 .. index:: -gnatw.U  (gcc)
 
-:samp:`-gnatw.U`
+:switch:`-gnatw.U`
   *Deactivate warnings on unordered enumeration types.*
 
   This switch causes all enumeration types to be considered as ordered, so
@@ -3665,7 +3887,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwv  (gcc)
 .. index:: Unassigned variable warnings
 
-:samp:`-gnatwv`
+:switch:`-gnatwv`
   *Activate warnings on unassigned variables.*
 
   This switch activates warnings for access to variables which
@@ -3675,7 +3897,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwV  (gcc)
 
-:samp:`-gnatwV`
+:switch:`-gnatwV`
   *Suppress warnings on unassigned variables.*
 
   This switch suppresses warnings for access to variables which
@@ -3696,7 +3918,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.v  (gcc)
 .. index:: bit order warnings
 
-:samp:`-gnatw.v`
+:switch:`-gnatw.v`
   *Activate info messages for non-default bit order.*
 
   This switch activates messages (labeled "info", they are not warnings,
@@ -3709,7 +3931,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.V  (gcc)
 
-:samp:`-gnatw.V`
+:switch:`-gnatw.V`
   *Suppress info messages for non-default bit order.*
 
   This switch suppresses information messages for the effects of specifying
@@ -3719,7 +3941,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatww  (gcc)
 .. index:: String indexing warnings
 
-:samp:`-gnatww`
+:switch:`-gnatww`
   *Activate warnings on wrong low bound assumption.*
 
   This switch activates warnings for indexing an unconstrained string parameter
@@ -3730,7 +3952,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwW  (gcc)
 
-:samp:`-gnatwW`
+:switch:`-gnatwW`
   *Suppress warnings on wrong low bound assumption.*
 
   This switch suppresses warnings for indexing an unconstrained string parameter
@@ -3748,13 +3970,13 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.w  (gcc)
 .. index:: Warnings Off control
 
-:samp:`-gnatw.w`
+:switch:`-gnatw.w`
   *Activate warnings on Warnings Off pragmas.*
 
-  This switch activates warnings for use of `pragma Warnings (Off, entity)`
+  This switch activates warnings for use of ``pragma Warnings (Off, entity)``
   where either the pragma is entirely useless (because it suppresses no
-  warnings), or it could be replaced by `pragma Unreferenced` or
-  `pragma Unmodified`.
+  warnings), or it could be replaced by ``pragma Unreferenced`` or
+  ``pragma Unmodified``.
   Also activates warnings for the case of
   Warnings (Off, String), where either there is no matching
   Warnings (On, String), or the Warnings (Off) did not suppress any warning.
@@ -3763,16 +3985,16 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatw.W  (gcc)
 
-:samp:`-gnatw.W`
+:switch:`-gnatw.W`
   *Suppress warnings on unnecessary Warnings Off pragmas.*
 
-  This switch suppresses warnings for use of `pragma Warnings (Off, ...)`.
+  This switch suppresses warnings for use of ``pragma Warnings (Off, ...)``.
 
 
 .. index:: -gnatwx  (gcc)
 .. index:: Export/Import pragma warnings
 
-:samp:`-gnatwx`
+:switch:`-gnatwx`
   *Activate warnings on Export/Import pragmas.*
 
   This switch activates warnings on Export/Import pragmas when
@@ -3786,7 +4008,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwX  (gcc)
 
-:samp:`-gnatwX`
+:switch:`-gnatwX`
   *Suppress warnings on Export/Import pragmas.*
 
   This switch suppresses warnings on Export/Import pragmas.
@@ -3797,17 +4019,17 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwm  (gcc)
 
-:samp:`-gnatw.x`
+:switch:`-gnatw.x`
   *Activate warnings for No_Exception_Propagation mode.*
 
   This switch activates warnings for exception usage when pragma Restrictions
   (No_Exception_Propagation) is in effect. Warnings are given for implicit or
   explicit exception raises which are not covered by a local handler, and for
-  exception handlers which do not cover a local raise. The default is that these
-  warnings are not given.
+  exception handlers which do not cover a local raise. The default is that
+  these warnings are given for units that contain exception handlers.
 
 
-:samp:`-gnatw.X`
+:switch:`-gnatw.X`
   *Disable warnings for No_Exception_Propagation mode.*
 
   This switch disables warnings for exception usage when pragma Restrictions
@@ -3817,14 +4039,14 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwy  (gcc)
 .. index:: Ada compatibility issues warnings
 
-:samp:`-gnatwy`
+:switch:`-gnatwy`
   *Activate warnings for Ada compatibility issues.*
 
   For the most part, newer versions of Ada are upwards compatible
   with older versions. For example, Ada 2005 programs will almost
   always work when compiled as Ada 2012.
   However there are some exceptions (for example the fact that
-  `some` is now a reserved word in Ada 2012). This
+  ``some`` is now a reserved word in Ada 2012). This
   switch activates several warnings to help in identifying
   and correcting such incompatibilities. The default is that
   these warnings are generated. Note that at one point Ada 2005
@@ -3834,7 +4056,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwY  (gcc)
 .. index:: Ada compatibility issues warnings
 
-:samp:`-gnatwY`
+:switch:`-gnatwY`
   *Disable warnings for Ada compatibility issues.*
 
   This switch suppresses the warnings intended to help in identifying
@@ -3844,7 +4066,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.y  (gcc)
 .. index:: Package spec needing body
 
-:samp:`-gnatw.y`
+:switch:`-gnatw.y`
   *Activate information messages for why package spec needs body.*
 
   There are a number of cases in which a package spec needs a body.
@@ -3859,7 +4081,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.Y  (gcc)
 .. index:: No information messages for why package spec needs body
 
-:samp:`-gnatw.Y`
+:switch:`-gnatw.Y`
   *Disable information messages for why package spec needs body.*
 
   This switch suppresses the output of information messages showing why
@@ -3869,7 +4091,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatwz  (gcc)
 .. index:: Unchecked_Conversion warnings
 
-:samp:`-gnatwz`
+:switch:`-gnatwz`
   *Activate warnings on unchecked conversions.*
 
   This switch activates warnings for unchecked conversions
@@ -3880,7 +4102,7 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 
 .. index:: -gnatwZ  (gcc)
 
-:samp:`-gnatwZ`
+:switch:`-gnatwZ`
   *Suppress warnings on unchecked conversions.*
 
   This switch suppresses warnings for unchecked conversions
@@ -3891,11 +4113,11 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.z  (gcc)
 .. index:: Size/Alignment warnings
 
-:samp:`-gnatw.z`
+:switch:`-gnatw.z`
   *Activate warnings for size not a multiple of alignment.*
 
-  This switch activates warnings for cases of record types with
-  specified `Size` and `Alignment` attributes where the
+  This switch activates warnings for cases of array and record types
+  with specified ``Size`` and ``Alignment`` attributes where the
   size is not a multiple of the alignment, resulting in an object
   size that is greater than the specified size. The default
   is that such warnings are generated.
@@ -3904,64 +4126,63 @@ of the pragma in the :title:`GNAT_Reference_manual`).
 .. index:: -gnatw.Z  (gcc)
 .. index:: Size/Alignment warnings
 
-:samp:`-gnatw.Z`
+:switch:`-gnatw.Z`
   *Suppress warnings for size not a multiple of alignment.*
 
-  This switch suppresses warnings for cases of record types with
-  specified `Size` and `Alignment` attributes where the
+  This switch suppresses warnings for cases of array and record types
+  with specified ``Size`` and ``Alignment`` attributes where the
   size is not a multiple of the alignment, resulting in an object
-  size that is greater than the specified size.
-  The warning can also be
-  suppressed by giving an explicit `Object_Size` value.
+  size that is greater than the specified size. The warning can also
+  be suppressed by giving an explicit ``Object_Size`` value.
 
 
 .. index:: -Wunused (gcc)
 
-:samp:`-Wunused`
-  The warnings controlled by the *-gnatw* switch are generated by
-  the front end of the compiler. The *GCC* back end can provide
-  additional warnings and they are controlled by the *-W* switch.
-  For example, *-Wunused* activates back end
+:switch:`-Wunused`
+  The warnings controlled by the :switch:`-gnatw` switch are generated by
+  the front end of the compiler. The GCC back end can provide
+  additional warnings and they are controlled by the :switch:`-W` switch.
+  For example, :switch:`-Wunused` activates back end
   warnings for entities that are declared but not referenced.
 
 
 .. index:: -Wuninitialized (gcc)
 
-:samp:`-Wuninitialized`
-  Similarly, *-Wuninitialized* activates
+:switch:`-Wuninitialized`
+  Similarly, :switch:`-Wuninitialized` activates
   the back end warning for uninitialized variables. This switch must be
   used in conjunction with an optimization level greater than zero.
 
 
 .. index:: -Wstack-usage (gcc)
 
-:samp:`-Wstack-usage={len}`
-  Warn if the stack usage of a subprogram might be larger than `len` bytes.
+:switch:`-Wstack-usage={len}`
+  Warn if the stack usage of a subprogram might be larger than ``len`` bytes.
   See :ref:`Static_Stack_Usage_Analysis` for details.
 
 
 .. index:: -Wall (gcc)
 
-:samp:`-Wall`
-  This switch enables most warnings from the *GCC* back end.
+:switch:`-Wall`
+  This switch enables most warnings from the GCC back end.
   The code generator detects a number of warning situations that are missed
-  by the *GNAT* front end, and this switch can be used to activate them.
+  by the GNAT front end, and this switch can be used to activate them.
   The use of this switch also sets the default front end warning mode to
-  *-gnatwa*, that is, most front end warnings activated as well.
+  :switch:`-gnatwa`, that is, most front end warnings activated as well.
 
 
 .. index:: -w (gcc)
 
-:samp:`-w`
-  Conversely, this switch suppresses warnings from the *GCC* back end.
+:switch:`-w`
+  Conversely, this switch suppresses warnings from the GCC back end.
   The use of this switch also sets the default front end warning mode to
-  *-gnatws*, that is, front end warnings suppressed as well.
+  :switch:`-gnatws`, that is, front end warnings suppressed as well.
 
 
 .. index:: -Werror (gcc)
 
-:samp:`-Werror`
-  This switch causes warnings from the *GCC* back end to be treated as
+:switch:`-Werror`
+  This switch causes warnings from the GCC back end to be treated as
   errors.  The warning string still appears, but the warning messages are
   counted as errors, and prevent the generation of an object file.
 
@@ -3974,79 +4195,99 @@ A string of warning parameters can be used in the same parameter. For example::
 will turn on all optional warnings except for unrecognized pragma warnings,
 and also specify that warnings should be treated as errors.
 
-When no switch *-gnatw* is used, this is equivalent to:
+When no switch :switch:`-gnatw` is used, this is equivalent to:
+
+  * :switch:`-gnatw.a`
+
+  * :switch:`-gnatwB`
 
-  * :samp:`-gnatw.a`
+  * :switch:`-gnatw.b`
 
-  * :samp:`-gnatwB`
+  * :switch:`-gnatwC`
 
-  * :samp:`-gnatw.b`
+  * :switch:`-gnatw.C`
 
-  * :samp:`-gnatwC`
+  * :switch:`-gnatwD`
 
-  * :samp:`-gnatw.C`
+  * :switch:`-gnatw.D`
 
-  * :samp:`-gnatwD`
+  * :switch:`-gnatwF`
 
-  * :samp:`-gnatwF`
+  * :switch:`-gnatw.F`
 
-  * :samp:`-gnatwg`
+  * :switch:`-gnatwg`
 
-  * :samp:`-gnatwH`
+  * :switch:`-gnatwH`
 
-  * :samp:`-gnatwi`
+  * :switch:`-gnatw.H`
 
-  * :samp:`-gnatw.I`
+  * :switch:`-gnatwi`
 
-  * :samp:`-gnatwJ`
+  * :switch:`-gnatwJ`
 
-  * :samp:`-gnatwK`
+  * :switch:`-gnatw.J`
 
-  * :samp:`-gnatwL`
+  * :switch:`-gnatwK`
 
-  * :samp:`-gnatw.L`
+  * :switch:`-gnatw.K`
 
-  * :samp:`-gnatwM`
+  * :switch:`-gnatwL`
 
-  * :samp:`-gnatw.m`
+  * :switch:`-gnatw.L`
 
-  * :samp:`-gnatwn`
+  * :switch:`-gnatwM`
 
-  * :samp:`-gnatwo`
+  * :switch:`-gnatw.m`
 
-  * :samp:`-gnatw.O`
+  * :switch:`-gnatwn`
 
-  * :samp:`-gnatwP`
+  * :switch:`-gnatw.N`
 
-  * :samp:`-gnatw.P`
+  * :switch:`-gnatwo`
 
-  * :samp:`-gnatwq`
+  * :switch:`-gnatw.O`
 
-  * :samp:`-gnatwR`
+  * :switch:`-gnatwP`
 
-  * :samp:`-gnatw.R`
+  * :switch:`-gnatw.P`
 
-  * :samp:`-gnatw.S`
+  * :switch:`-gnatwq`
 
-  * :samp:`-gnatwT`
+  * :switch:`-gnatw.Q`
 
-  * :samp:`-gnatw.T`
+  * :switch:`-gnatwR`
 
-  * :samp:`-gnatwU`
+  * :switch:`-gnatw.R`
 
-  * :samp:`-gnatwv`
+  * :switch:`-gnatw.S`
 
-  * :samp:`-gnatww`
+  * :switch:`-gnatwT`
 
-  * :samp:`-gnatw.W`
+  * :switch:`-gnatw.t`
 
-  * :samp:`-gnatwx`
+  * :switch:`-gnatwU`
 
-  * :samp:`-gnatw.X`
+  * :switch:`-gnatw.U`
 
-  * :samp:`-gnatwy`
+  * :switch:`-gnatwv`
 
-  * :samp:`-gnatwz`
+  * :switch:`-gnatw.v`
+
+  * :switch:`-gnatww`
+
+  * :switch:`-gnatw.W`
+
+  * :switch:`-gnatwx`
+
+  * :switch:`-gnatw.X`
+
+  * :switch:`-gnatwy`
+
+  * :switch:`-gnatw.Y`
+
+  * :switch:`-gnatwz`
+
+  * :switch:`-gnatw.z`
 
 .. _Debugging_and_Assertion_Control:
 
@@ -4057,7 +4298,7 @@ Debugging and Assertion Control
 
 .. index:: -gnata  (gcc)
 
-:samp:`-gnata`
+:switch:`-gnata`
   .. index:: Assert
   .. index:: Debug
   .. index:: Assertions
@@ -4066,7 +4307,7 @@ Debugging and Assertion Control
   .. index:: Type invariants
   .. index:: Subtype predicates
 
-  The `-gnata` option is equivalent to the following Assertion_Policy pragma::
+  The :switch:`-gnata` option is equivalent to the following ``Assertion_Policy`` pragma::
 
        pragma Assertion_Policy (Check);
 
@@ -4083,9 +4324,9 @@ Debugging and Assertion Control
           Type_Invariant       => Check,
           Type_Invariant'Class => Check);
 
-  The pragmas `Assert` and `Debug` normally have no effect and
-  are ignored. This switch, where :samp:`a` stands for assert, causes
-  pragmas `Assert` and `Debug` to be activated. This switch also
+  The pragmas ``Assert`` and ``Debug`` normally have no effect and
+  are ignored. This switch, where ``a`` stands for 'assert', causes
+  pragmas ``Assert`` and ``Debug`` to be activated. This switch also
   causes preconditions, postconditions, subtype predicates, and
   type invariants to be activated.
 
@@ -4103,22 +4344,22 @@ Debugging and Assertion Control
        with [Pre|Post|Type_Invariant|Dynamic_Predicate|Static_Predicate]
          => <Boolean-expression>;
 
-  The `Assert` pragma causes `Boolean-expression` to be tested.
-  If the result is `True`, the pragma has no effect (other than
+  The ``Assert`` pragma causes ``Boolean-expression`` to be tested.
+  If the result is ``True``, the pragma has no effect (other than
   possible side effects from evaluating the expression). If the result is
-  `False`, the exception `Assert_Failure` declared in the package
-  `System.Assertions` is raised (passing `static-string-expression`, if
+  ``False``, the exception ``Assert_Failure`` declared in the package
+  ``System.Assertions`` is raised (passing ``static-string-expression``, if
   present, as the message associated with the exception). If no string
   expression is given, the default is a string containing the file name and
   line number of the pragma.
 
-  The `Debug` pragma causes `procedure` to be called. Note that
-  `pragma Debug` may appear within a declaration sequence, allowing
+  The ``Debug`` pragma causes ``procedure`` to be called. Note that
+  ``pragma Debug`` may appear within a declaration sequence, allowing
   debugging procedures to be called between declarations.
 
-  For the aspect specification, the `<Boolean-expression>` is evaluated.
-  If the result is `True`, the aspect has no effect. If the result
-  is `False`, the exception `Assert_Failure` is raised.
+  For the aspect specification, the ``Boolean-expression`` is evaluated.
+  If the result is ``True``, the aspect has no effect. If the result
+  is ``False``, the exception ``Assert_Failure`` is raised.
 
 .. _Validity_Checking:
 
@@ -4136,14 +4377,14 @@ composite types.
 It is an error to read an invalid value, but the RM does not require
 run-time checks to detect such errors, except for some minimal
 checking to prevent erroneous execution (i.e. unpredictable
-behavior). This corresponds to the *-gnatVd* switch below,
+behavior). This corresponds to the :switch:`-gnatVd` switch below,
 which is the default. For example, by default, if the expression of a
 case statement is invalid, it will raise Constraint_Error rather than
 causing a wild jump, and if an array index on the left-hand side of an
 assignment is invalid, it will raise Constraint_Error rather than
 overwriting an arbitrary memory location.
 
-The *-gnatVa* may be used to enable additional validity checks,
+The :switch:`-gnatVa` may be used to enable additional validity checks,
 which are not required by the RM. These checks are often very
 expensive (which is why the RM does not require them). These checks
 are useful in tracking down uninitialized variables, but they are
@@ -4153,20 +4394,20 @@ combination with optimization, since this can confuse the optimizer.
 If performance is a consideration, leading to the need to optimize,
 then the validity checking options should not be used.
 
-The other *-gnatV*\ ``x`` switches below allow finer-grained
+The other :switch:`-gnatV{x}` switches below allow finer-grained
 control; you can enable whichever validity checks you desire. However,
-for most debugging purposes, *-gnatVa* is sufficient, and the
-default *-gnatVd* (i.e. standard Ada behavior) is usually
+for most debugging purposes, :switch:`-gnatVa` is sufficient, and the
+default :switch:`-gnatVd` (i.e. standard Ada behavior) is usually
 sufficient for non-debugging use.
 
-The *-gnatB* switch tells the compiler to assume that all
+The :switch:`-gnatB` switch tells the compiler to assume that all
 values are valid (that is, within their declared subtype range)
 except in the context of a use of the Valid attribute. This means
 the compiler can generate more efficient code, since the range
 of values is better known at compile time. However, an uninitialized
 variable can cause wild jumps and memory corruption in this mode.
 
-The *-gnatV*\ ``x`` switch allows control over the validity
+The :switch:`-gnatV{x}` switch allows control over the validity
 checking mode as described below.
 The ``x`` argument is a string of letters that
 indicate validity checks that are performed or not performed in addition
@@ -4175,17 +4416,17 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVa  (gcc)
 
-:samp:`-gnatVa`
+:switch:`-gnatVa`
   *All validity checks.*
 
   All validity checks are turned on.
-  That is, *-gnatVa* is
-  equivalent to *gnatVcdfimorst*.
+  That is, :switch:`-gnatVa` is
+  equivalent to ``gnatVcdfimorst``.
 
 
 .. index:: -gnatVc  (gcc)
 
-:samp:`-gnatVc`
+:switch:`-gnatVc`
   *Validity checks for copies.*
 
   The right hand side of assignments, and the initializing values of
@@ -4194,7 +4435,7 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVd  (gcc)
 
-:samp:`-gnatVd`
+:switch:`-gnatVd`
   *Default (RM) validity checks.*
 
   Some validity checks are done by default following normal Ada semantics
@@ -4203,10 +4444,10 @@ to the default checks required by Ada as described above.
   of the subtype. If it is not, Constraint_Error is raised.
   For assignments to array components, a check is done that the expression used
   as index is within the range. If it is not, Constraint_Error is raised.
-  Both these validity checks may be turned off using switch *-gnatVD*.
-  They are turned on by default. If *-gnatVD* is specified, a subsequent
-  switch *-gnatVd* will leave the checks turned on.
-  Switch *-gnatVD* should be used only if you are sure that all such
+  Both these validity checks may be turned off using switch :switch:`-gnatVD`.
+  They are turned on by default. If :switch:`-gnatVD` is specified, a subsequent
+  switch :switch:`-gnatVd` will leave the checks turned on.
+  Switch :switch:`-gnatVD` should be used only if you are sure that all such
   expressions have valid values. If you use this switch and invalid values
   are present, then the program is erroneous, and wild jumps or memory
   overwriting may occur.
@@ -4214,12 +4455,12 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVe  (gcc)
 
-:samp:`-gnatVe`
+:switch:`-gnatVe`
   *Validity checks for elementary components.*
 
   In the absence of this switch, assignments to record or array components are
   not validity checked, even if validity checks for assignments generally
-  (*-gnatVc*) are turned on. In Ada, assignment of composite values do not
+  (:switch:`-gnatVc`) are turned on. In Ada, assignment of composite values do not
   require valid data, but assignment of individual components does. So for
   example, there is a difference between copying the elements of an array with a
   slice assignment, compared to assigning element by element in a loop. This
@@ -4229,38 +4470,38 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVf  (gcc)
 
-:samp:`-gnatVf`
+:switch:`-gnatVf`
   *Validity checks for floating-point values.*
 
   In the absence of this switch, validity checking occurs only for discrete
-  values. If *-gnatVf* is specified, then validity checking also applies
+  values. If :switch:`-gnatVf` is specified, then validity checking also applies
   for floating-point values, and NaNs and infinities are considered invalid,
   as well as out of range values for constrained types. Note that this means
   that standard IEEE infinity mode is not allowed. The exact contexts
   in which floating-point values are checked depends on the setting of other
-  options. For example, *-gnatVif* or *-gnatVfi*
+  options. For example, :switch:`-gnatVif` or :switch:`-gnatVfi`
   (the order does not matter) specifies that floating-point parameters of mode
-  `in` should be validity checked.
+  ``in`` should be validity checked.
 
 
 .. index:: -gnatVi  (gcc)
 
-:samp:`-gnatVi`
-  *Validity checks for `in` mode parameters.*
+:switch:`-gnatVi`
+  *Validity checks for ``in`` mode parameters.*
 
-  Arguments for parameters of mode `in` are validity checked in function
+  Arguments for parameters of mode ``in`` are validity checked in function
   and procedure calls at the point of call.
 
 
 .. index:: -gnatVm  (gcc)
 
-:samp:`-gnatVm`
-  *Validity checks for `in out` mode parameters.*
+:switch:`-gnatVm`
+  *Validity checks for ``in out`` mode parameters.*
 
-  Arguments for parameters of mode `in out` are validity checked in
-  procedure calls at the point of call. The `'m'` here stands for
+  Arguments for parameters of mode ``in out`` are validity checked in
+  procedure calls at the point of call. The ``'m'`` here stands for
   modify, since this concerns parameters that can be modified by the call.
-  Note that there is no specific option to test `out` parameters,
+  Note that there is no specific option to test ``out`` parameters,
   but any reference within the subprogram will be tested in the usual
   manner, and if an invalid value is copied back, any reference to it
   will be subject to validity checking.
@@ -4268,25 +4509,25 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVn  (gcc)
 
-:samp:`-gnatVn`
+:switch:`-gnatVn`
   *No validity checks.*
 
   This switch turns off all validity checking, including the default checking
   for case statements and left hand side subscripts. Note that the use of
-  the switch *-gnatp* suppresses all run-time checks, including
-  validity checks, and thus implies *-gnatVn*. When this switch
-  is used, it cancels any other *-gnatV* previously issued.
+  the switch :switch:`-gnatp` suppresses all run-time checks, including
+  validity checks, and thus implies :switch:`-gnatVn`. When this switch
+  is used, it cancels any other :switch:`-gnatV` previously issued.
 
 
 .. index:: -gnatVo  (gcc)
 
-:samp:`-gnatVo`
+:switch:`-gnatVo`
   *Validity checks for operator and attribute operands.*
 
   Arguments for predefined operators and attributes are validity checked.
-  This includes all operators in package `Standard`,
-  the shift operators defined as intrinsic in package `Interfaces`
-  and operands for attributes such as `Pos`. Checks are also made
+  This includes all operators in package ``Standard``,
+  the shift operators defined as intrinsic in package ``Interfaces``
+  and operands for attributes such as ``Pos``. Checks are also made
   on individual component values for composite comparisons, and on the
   expressions in type conversions and qualified expressions. Checks are
   also made on explicit ranges using :samp:`..` (e.g., slices, loops etc).
@@ -4294,31 +4535,31 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVp  (gcc)
 
-:samp:`-gnatVp`
+:switch:`-gnatVp`
   *Validity checks for parameters.*
 
   This controls the treatment of parameters within a subprogram (as opposed
-  to *-gnatVi* and *-gnatVm* which control validity testing
+  to :switch:`-gnatVi` and :switch:`-gnatVm` which control validity testing
   of parameters on a call. If either of these call options is used, then
   normally an assumption is made within a subprogram that the input arguments
   have been validity checking at the point of call, and do not need checking
-  again within a subprogram). If *-gnatVp* is set, then this assumption
+  again within a subprogram). If :switch:`-gnatVp` is set, then this assumption
   is not made, and parameters are not assumed to be valid, so their validity
   will be checked (or rechecked) within the subprogram.
 
 
 .. index:: -gnatVr  (gcc)
 
-:samp:`-gnatVr`
+:switch:`-gnatVr`
   *Validity checks for function returns.*
 
-  The expression in `return` statements in functions is validity
+  The expression in ``return`` statements in functions is validity
   checked.
 
 
 .. index:: -gnatVs  (gcc)
 
-:samp:`-gnatVs`
+:switch:`-gnatVs`
   *Validity checks for subscripts.*
 
   All subscripts expressions are checked for validity, whether they appear
@@ -4328,33 +4569,33 @@ to the default checks required by Ada as described above.
 
 .. index:: -gnatVt  (gcc)
 
-:samp:`-gnatVt`
+:switch:`-gnatVt`
   *Validity checks for tests.*
 
-  Expressions used as conditions in `if`, `while` or `exit`
+  Expressions used as conditions in ``if``, ``while`` or ``exit``
   statements are checked, as well as guard expressions in entry calls.
 
 
-The *-gnatV* switch may be followed by a string of letters
+The :switch:`-gnatV` switch may be followed by a string of letters
 to turn on a series of validity checking options.
-For example, :samp:`-gnatVcr`
+For example, :switch:`-gnatVcr`
 specifies that in addition to the default validity checking, copies and
 function return expressions are to be validity checked.
 In order to make it easier to specify the desired combination of effects,
-the upper case letters `CDFIMORST` may
+the upper case letters ``CDFIMORST`` may
 be used to turn off the corresponding lower case option.
-Thus :samp:`-gnatVaM` turns on all validity checking options except for
-checking of `**in out**` procedure arguments.
+Thus :switch:`-gnatVaM` turns on all validity checking options except for
+checking of ``in out`` parameters.
 
 The specification of additional validity checking generates extra code (and
-in the case of *-gnatVa* the code expansion can be substantial).
+in the case of :switch:`-gnatVa` the code expansion can be substantial).
 However, these additional checks can be very useful in detecting
 uninitialized variables, incorrect use of unchecked conversion, and other
-errors leading to invalid values. The use of pragma `Initialize_Scalars`
+errors leading to invalid values. The use of pragma ``Initialize_Scalars``
 is useful in conjunction with the extra validity checking, since this
 ensures that wherever possible uninitialized variables have invalid values.
 
-See also the pragma `Validity_Checks` which allows modification of
+See also the pragma ``Validity_Checks`` which allows modification of
 the validity checking mode at the program source level, and also allows for
 temporary disabling of validity checks.
 
@@ -4367,13 +4608,13 @@ Style Checking
 
 .. index:: -gnaty  (gcc)
 
-The *-gnatyx* switch causes the compiler to
+The :switch:`-gnatyx` switch causes the compiler to
 enforce specified style rules. A limited set of style rules has been used
 in writing the GNAT sources themselves. This switch allows user programs
 to activate all or some of these checks. If the source program fails a
 specified style check, an appropriate message is given, preceded by
 the character sequence '(style)'. This message does not prevent
-successful compilation (unless the *-gnatwe* switch is used).
+successful compilation (unless the :switch:`-gnatwe` switch is used).
 
 Note that this is by no means intended to be a general facility for
 checking arbitrary coding standards. It is simply an embedding of the
@@ -4390,23 +4631,23 @@ some subset of them.
   of an existing set of coding rules, you should look to the gnatcheck
   tool, which is designed for that purpose.
 
-The string `x` is a sequence of letters or digits
+The string ``x`` is a sequence of letters or digits
 indicating the particular style
 checks to be performed. The following checks are defined:
 
 
 .. index:: -gnaty[0-9]   (gcc)
 
-:samp:`-gnaty0`
+:switch:`-gnaty0`
   *Specify indentation level.*
 
   If a digit from 1-9 appears
-  in the string after *-gnaty*
+  in the string after :switch:`-gnaty`
   then proper indentation is checked, with the digit indicating the
   indentation level required. A value of zero turns off this style check.
   The general style of required indentation is as specified by
   the examples in the Ada Reference Manual. Full line comments must be
-  aligned with the `--` starting on a column that is a multiple of
+  aligned with the ``--`` starting on a column that is a multiple of
   the alignment level, or they may be aligned the same way as the following
   non-blank line (this is useful when full line comments appear in the middle
   of a statement, or they may be aligned with the source line on the previous
@@ -4414,10 +4655,10 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatya   (gcc)
 
-:samp:`-gnatya`
+:switch:`-gnatya`
   *Check attribute casing.*
 
-  Attribute names, including the case of keywords such as `digits`
+  Attribute names, including the case of keywords such as ``digits``
   used as attributes names, must be written in mixed case, that is, the
   initial letter and any letter following an underscore must be uppercase.
   All other letters must be lowercase.
@@ -4425,7 +4666,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyA (gcc)
 
-:samp:`-gnatyA`
+:switch:`-gnatyA`
   *Use of array index numbers in array attributes.*
 
   When using the array attributes First, Last, Range,
@@ -4435,7 +4676,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyb (gcc)
 
-:samp:`-gnatyb`
+:switch:`-gnatyb`
   *Blanks not allowed at statement end.*
 
   Trailing blanks are not allowed at the end of statements. The purpose of this
@@ -4445,51 +4686,51 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyB (gcc)
 
-:samp:`-gnatyB`
+:switch:`-gnatyB`
   *Check Boolean operators.*
 
   The use of AND/OR operators is not permitted except in the cases of modular
   operands, array operands, and simple stand-alone boolean variables or
-  boolean constants. In all other cases `and then`/`or else` are
+  boolean constants. In all other cases ``and then``/`or else` are
   required.
 
 
 .. index:: -gnatyc (gcc)
 
-:samp:`-gnatyc`
+:switch:`-gnatyc`
   *Check comments, double space.*
 
   Comments must meet the following set of rules:
 
-  * The '`--`' that starts the column must either start in column one,
+  * The ``--`` that starts the column must either start in column one,
     or else at least one blank must precede this sequence.
 
   * Comments that follow other tokens on a line must have at least one blank
-    following the '`--`' at the start of the comment.
+    following the ``--`` at the start of the comment.
 
   * Full line comments must have at least two blanks following the
-    '`--`' that starts the comment, with the following exceptions.
+    ``--`` that starts the comment, with the following exceptions.
 
-  * A line consisting only of the '`--`' characters, possibly preceded
+  * A line consisting only of the ``--`` characters, possibly preceded
     by blanks is permitted.
 
-  * A comment starting with '`--x`' where `x` is a special character
+  * A comment starting with ``--x`` where ``x`` is a special character
     is permitted.
-    This allows proper processing of the output generated by specialized tools
-    including *gnatprep* (where '`--!`' is used) and the SPARK
+    This allows proper processing of the output from specialized tools
+    such as ``gnatprep`` (where ``--!`` is used) and in earlier versions of the SPARK
     annotation
-    language (where '`--#`' is used). For the purposes of this rule, a
+    language (where ``--#`` is used). For the purposes of this rule, a
     special character is defined as being in one of the ASCII ranges
-    `16#21#...16#2F#` or `16#3A#...16#3F#`.
+    ``16#21#...16#2F#`` or ``16#3A#...16#3F#``.
     Note that this usage is not permitted
-    in GNAT implementation units (i.e., when *-gnatg* is used).
+    in GNAT implementation units (i.e., when :switch:`-gnatg` is used).
 
   * A line consisting entirely of minus signs, possibly preceded by blanks, is
     permitted. This allows the construction of box comments where lines of minus
     signs are used to form the top and bottom of the box.
 
-  * A comment that starts and ends with '`--`' is permitted as long as at
-    least one blank follows the initial '`--`'. Together with the preceding
+  * A comment that starts and ends with ``--`` is permitted as long as at
+    least one blank follows the initial ``--``. Together with the preceding
     rule, this allows the construction of box comments, as shown in the following
     example:
 
@@ -4503,16 +4744,16 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyC (gcc)
 
-:samp:`-gnatyC`
+:switch:`-gnatyC`
   *Check comments, single space.*
 
-  This is identical to `c` except that only one space
-  is required following the `--` of a comment instead of two.
+  This is identical to ``c`` except that only one space
+  is required following the ``--`` of a comment instead of two.
 
 
 .. index:: -gnatyd (gcc)
 
-:samp:`-gnatyd`
+:switch:`-gnatyd`
   *Check no DOS line terminators present.*
 
   All lines must be terminated by a single ASCII.LF
@@ -4520,18 +4761,28 @@ checks to be performed. The following checks are defined:
   allowed).
 
 
+.. index:: -gnatyD (gcc)
+
+:switch:`-gnatyD`
+  *Check declared identifiers in mixed case.*
+
+  Declared identifiers must be in mixed case, as in
+  This_Is_An_Identifier. Use -gnatyr in addition to ensure
+  that references match declarations.
+
+
 .. index:: -gnatye (gcc)
 
-:samp:`-gnatye`
+:switch:`-gnatye`
   *Check end/exit labels.*
 
-  Optional labels on `end` statements ending subprograms and on
-  `exit` statements exiting named loops, are required to be present.
+  Optional labels on ``end`` statements ending subprograms and on
+  ``exit`` statements exiting named loops, are required to be present.
 
 
 .. index:: -gnatyf (gcc)
 
-:samp:`-gnatyf`
+:switch:`-gnatyf`
   *No form feeds or vertical tabs.*
 
   Neither form feeds nor vertical tab characters are permitted
@@ -4540,19 +4791,19 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyg (gcc)
 
-:samp:`-gnatyg`
+:switch:`-gnatyg`
   *GNAT style mode.*
 
   The set of style check switches is set to match that used by the GNAT sources.
   This may be useful when developing code that is eventually intended to be
-  incorporated into GNAT. Currently this is equivalent to *-gnatwydISux*)
+  incorporated into GNAT. Currently this is equivalent to :switch:`-gnatyydISux`)
   but additional style switches may be added to this set in the future without
   advance notice.
 
 
 .. index:: -gnatyh (gcc)
 
-:samp:`-gnatyh`
+:switch:`-gnatyh`
   *No horizontal tabs.*
 
   Horizontal tab characters are not permitted in the source text.
@@ -4563,49 +4814,49 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyi (gcc)
 
-:samp:`-gnatyi`
+:switch:`-gnatyi`
   *Check if-then layout.*
 
-  The keyword `then` must appear either on the same
-  line as corresponding `if`, or on a line on its own, lined
-  up under the `if`.
+  The keyword ``then`` must appear either on the same
+  line as corresponding ``if``, or on a line on its own, lined
+  up under the ``if``.
 
 
 .. index:: -gnatyI (gcc)
 
-:samp:`-gnatyI`
+:switch:`-gnatyI`
   *check mode IN keywords.*
 
-  Mode `in` (the default mode) is not
-  allowed to be given explicitly. `in out` is fine,
-  but not `in` on its own.
+  Mode ``in`` (the default mode) is not
+  allowed to be given explicitly. ``in out`` is fine,
+  but not ``in`` on its own.
 
 
 .. index:: -gnatyk (gcc)
 
-:samp:`-gnatyk`
+:switch:`-gnatyk`
   *Check keyword casing.*
 
   All keywords must be in lower case (with the exception of keywords
-  such as `digits` used as attribute names to which this check
+  such as ``digits`` used as attribute names to which this check
   does not apply).
 
 
 .. index:: -gnatyl (gcc)
 
-:samp:`-gnatyl`
+:switch:`-gnatyl`
   *Check layout.*
 
   Layout of statement and declaration constructs must follow the
   recommendations in the Ada Reference Manual, as indicated by the
-  form of the syntax rules. For example an `else` keyword must
-  be lined up with the corresponding `if` keyword.
+  form of the syntax rules. For example an ``else`` keyword must
+  be lined up with the corresponding ``if`` keyword.
 
   There are two respects in which the style rule enforced by this check
   option are more liberal than those in the Ada Reference Manual. First
   in the case of record declarations, it is permissible to put the
-  `record` keyword on the same line as the `type` keyword, and
-  then the `end` in `end record` must line up under `type`.
+  ``record`` keyword on the same line as the ``type`` keyword, and
+  then the ``end`` in ``end record`` must line up under ``type``.
   This is also permitted when the type declaration is split on two lines.
   For example, any of the following three layouts is acceptable:
 
@@ -4629,8 +4880,8 @@ checks to be performed. The following checks are defined:
     end record;
 
   Second, in the case of a block statement, a permitted alternative
-  is to put the block label on the same line as the `declare` or
-  `begin` keyword, and then line the `end` keyword up under
+  is to put the block label on the same line as the ``declare`` or
+  ``begin`` keyword, and then line the ``end`` keyword up under
   the block label. For example both the following are permitted:
 
   .. code-block:: ada
@@ -4665,7 +4916,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyLnnn (gcc)
 
-:samp:`-gnatyL`
+:switch:`-gnatyL`
   *Set maximum nesting level.*
 
   The maximum level of nesting of constructs (including subprograms, loops,
@@ -4675,7 +4926,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatym (gcc)
 
-:samp:`-gnatym`
+:switch:`-gnatym`
   *Check maximum line length.*
 
   The length of source lines must not exceed 79 characters, including
@@ -4689,7 +4940,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyMnnn (gcc)
 
-:samp:`-gnatyM`
+:switch:`-gnatyM`
   *Set maximum line length.*
 
   The length of lines must not exceed the
@@ -4701,17 +4952,17 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyn (gcc)
 
-:samp:`-gnatyn`
+:switch:`-gnatyn`
   *Check casing of entities in Standard.*
 
   Any identifier from Standard must be cased
   to match the presentation in the Ada Reference Manual (for example,
-  `Integer` and `ASCII.NUL`).
+  ``Integer`` and ``ASCII.NUL``).
 
 
 .. index:: -gnatyN (gcc)
 
-:samp:`-gnatyN`
+:switch:`-gnatyN`
   *Turn off all style checks.*
 
   All style check options are turned off.
@@ -4719,7 +4970,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyo (gcc)
 
-:samp:`-gnatyo`
+:switch:`-gnatyo`
   *Check order of subprogram bodies.*
 
   All subprogram bodies in a given scope
@@ -4732,7 +4983,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyO (gcc)
 
-:samp:`-gnatyO`
+:switch:`-gnatyO`
   *Check that overriding subprograms are explicitly marked as such.*
 
   This applies to all subprograms of a derived type that override a primitive
@@ -4745,7 +4996,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyp (gcc)
 
-:samp:`-gnatyp`
+:switch:`-gnatyp`
   *Check pragma casing.*
 
   Pragma names must be written in mixed case, that is, the
@@ -4756,7 +5007,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyr (gcc)
 
-:samp:`-gnatyr`
+:switch:`-gnatyr`
   *Check references.*
 
   All identifier references must be cased in the same way as the
@@ -4767,7 +5018,7 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatys (gcc)
 
-:samp:`-gnatys`
+:switch:`-gnatys`
   *Check separate specs.*
 
   Separate declarations ('specs') are required for subprograms (a
@@ -4779,30 +5030,30 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyS (gcc)
 
-:samp:`-gnatyS`
+:switch:`-gnatyS`
   *Check no statements after then/else.*
 
   No statements are allowed
-  on the same line as a `then` or `else` keyword following the
-  keyword in an `if` statement. `or else` and `and then` are not
-  affected, and a special exception allows a pragma to appear after `else`.
+  on the same line as a ``then`` or ``else`` keyword following the
+  keyword in an ``if`` statement. ``or else`` and ``and then`` are not
+  affected, and a special exception allows a pragma to appear after ``else``.
 
 
 .. index:: -gnatyt (gcc)
 
-:samp:`-gnatyt`
+:switch:`-gnatyt`
   *Check token spacing.*
 
   The following token spacing rules are enforced:
 
-  * The keywords `abs` and `not` must be followed by a space.
+  * The keywords ``abs`` and ``not`` must be followed by a space.
 
-  * The token `=>` must be surrounded by spaces.
+  * The token ``=>`` must be surrounded by spaces.
 
-  * The token `<>` must be preceded by a space or a left parenthesis.
+  * The token ``<>`` must be preceded by a space or a left parenthesis.
 
-  * Binary operators other than `**` must be surrounded by spaces.
-    There is no restriction on the layout of the `**` binary operator.
+  * Binary operators other than ``**`` must be surrounded by spaces.
+    There is no restriction on the layout of the ``**`` binary operator.
 
   * Colon must be surrounded by spaces.
 
@@ -4829,12 +5080,12 @@ checks to be performed. The following checks are defined:
   * A vertical bar must be surrounded by spaces.
 
   Exactly one blank (and no other white space) must appear between
-  a `not` token and a following `in` token.
+  a ``not`` token and a following ``in`` token.
 
 
 .. index:: -gnatyu (gcc)
 
-:samp:`-gnatyu`
+:switch:`-gnatyu`
   *Check unnecessary blank lines.*
 
   Unnecessary blank lines are not allowed. A blank line is considered
@@ -4844,42 +5095,42 @@ checks to be performed. The following checks are defined:
 
 .. index:: -gnatyx (gcc)
 
-:samp:`-gnatyx`
+:switch:`-gnatyx`
   *Check extra parentheses.*
 
   Unnecessary extra level of parentheses (C-style) are not allowed
-  around conditions in `if` statements, `while` statements and
-  `exit` statements.
+  around conditions in ``if`` statements, ``while`` statements and
+  ``exit`` statements.
 
 
 .. index:: -gnatyy (gcc)
 
-:samp:`-gnatyy`
+:switch:`-gnatyy`
   *Set all standard style check options.*
 
-  This is equivalent to `gnaty3aAbcefhiklmnprst`, that is all checking
-  options enabled with the exception of *-gnatyB*, *-gnatyd*,
-  *-gnatyI*, *-gnatyLnnn*, *-gnatyo*, *-gnatyO*,
-  *-gnatyS*, *-gnatyu*, and *-gnatyx*.
+  This is equivalent to ``gnaty3aAbcefhiklmnprst``, that is all checking
+  options enabled with the exception of :switch:`-gnatyB`, :switch:`-gnatyd`,
+  :switch:`-gnatyI`, :switch:`-gnatyLnnn`, :switch:`-gnatyo`, :switch:`-gnatyO`,
+  :switch:`-gnatyS`, :switch:`-gnatyu`, and :switch:`-gnatyx`.
 
 
 .. index:: -gnaty- (gcc)
 
-:samp:`-gnaty-`
+:switch:`-gnaty-`
   *Remove style check options.*
 
   This causes any subsequent options in the string to act as canceling the
   corresponding style check option. To cancel maximum nesting level control,
-  use *L* parameter witout any integer value after that, because any
-  digit following *-* in the parameter string of the *-gnaty*
-  option will be threated as canceling indentation check. The same is true
-  for *M* parameter. *y* and *N* parameters are not
+  use the ``L`` parameter without any integer value after that, because any
+  digit following *-* in the parameter string of the :switch:`-gnaty`
+  option will be treated as canceling the indentation check. The same is true
+  for the ``M`` parameter. ``y`` and ``N`` parameters are not
   allowed after *-*.
 
 
 .. index:: -gnaty+ (gcc)
 
-:samp:`-gnaty+`
+:switch:`-gnaty+`
   *Enable style check options.*
 
   This causes any subsequent options in the string to enable the corresponding
@@ -4902,15 +5153,15 @@ If any of these style rules is violated, a message is generated giving
 details on the violation. The initial characters of such messages are
 always '`(style)`'. Note that these messages are treated as warning
 messages, so they normally do not prevent the generation of an object
-file. The *-gnatwe* switch can be used to treat warning messages,
+file. The :switch:`-gnatwe` switch can be used to treat warning messages,
 including style messages, as fatal errors.
 
-The switch :samp:`-gnaty` on its own (that is not
+The switch :switch:`-gnaty` on its own (that is not
 followed by any letters or digits) is equivalent
-to the use of *-gnatyy* as described above, that is all
+to the use of :switch:`-gnatyy` as described above, that is all
 built-in standard style check options are enabled.
 
-The switch :samp:`-gnatyN` clears any previously set style checks.
+The switch :switch:`-gnatyN` clears any previously set style checks.
 
 .. _Run-Time_Checks:
 
@@ -4930,20 +5181,20 @@ Run-Time Checks
 By default, the following checks are suppressed: stack overflow
 checks, and checks for access before elaboration on subprogram
 calls. All other checks, including overflow checks, range checks and
-array bounds checks, are turned on by default. The following *gcc*
+array bounds checks, are turned on by default. The following ``gcc``
 switches refine this default behavior.
 
 .. index:: -gnatp  (gcc)
 
-:samp:`-gnatp`
+:switch:`-gnatp`
   .. index:: Suppressing checks
 
   .. index:: Checks, suppressing
 
   This switch causes the unit to be compiled
-  as though `pragma Suppress (All_checks)`
+  as though ``pragma Suppress (All_checks)``
   had been present in the source. Validity checks are also eliminated (in
-  other words *-gnatp* also implies *-gnatVn*.
+  other words :switch:`-gnatp` also implies :switch:`-gnatVn`.
   Use this switch to improve the performance
   of the code at the expense of safety in the presence of invalid data or
   program bugs.
@@ -4955,7 +5206,7 @@ switches refine this default behavior.
   that a certain check will necessarily fail, it will generate code to
   do an unconditional 'raise', even if checks are suppressed. The
   compiler warns in this case. Another case in which checks may not be
-  eliminated is when they are embedded in certain run time routines such
+  eliminated is when they are embedded in certain run-time routines such
   as math library routines.
 
   Of course, run-time checks are omitted whenever the compiler can prove
@@ -4971,19 +5222,18 @@ switches refine this default behavior.
   execution if that assumption is wrong.
 
   The checks subject to suppression include all the checks defined by the Ada
-  standard, the additional implementation defined checks `Alignment_Check`,
-  `Duplicated_Tag_Check`, `Predicate_Check`, Container_Checks, Tampering_Check,
-  and `Validity_Check`, as well as any checks introduced using `pragma
-  Check_Name`. Note that `Atomic_Synchronization` is not automatically
-  suppressed by use of this option.
+  standard, the additional implementation defined checks ``Alignment_Check``,
+  ``Duplicated_Tag_Check``, ``Predicate_Check``, ``Container_Checks``, ``Tampering_Check``,
+  and ``Validity_Check``, as well as any checks introduced using ``pragma Check_Name``.
+  Note that ``Atomic_Synchronization`` is not automatically suppressed by use of this option.
 
   If the code depends on certain checks being active, you can use
-  pragma `Unsuppress` either as a configuration pragma or as
+  pragma ``Unsuppress`` either as a configuration pragma or as
   a local pragma to make sure that a specified check is performed
-  even if *gnatp* is specified.
+  even if ``gnatp`` is specified.
 
-  The *-gnatp* switch has no effect if a subsequent
-  *-gnat-p* switch appears.
+  The :switch:`-gnatp` switch has no effect if a subsequent
+  :switch:`-gnat-p` switch appears.
 
 
 .. index:: -gnat-p  (gcc)
@@ -4991,8 +5241,8 @@ switches refine this default behavior.
 .. index:: Checks, suppressing
 .. index:: Suppress
 
-:samp:`-gnat-p`
-  This switch cancels the effect of a previous *gnatp* switch.
+:switch:`-gnat-p`
+  This switch cancels the effect of a previous ``gnatp`` switch.
 
 
 .. index:: -gnato??  (gcc)
@@ -5000,7 +5250,7 @@ switches refine this default behavior.
 .. index:: Overflow mode
 .. index:: Check, overflow
 
-:samp:`-gnato??`
+:switch:`-gnato??`
   This switch controls the mode used for computing intermediate
   arithmetic integer operations, and also enables overflow checking.
   For a full description of overflow mode and checking control, see
@@ -5020,7 +5270,7 @@ switches refine this default behavior.
   *2 = MINIMIZED*
     In MINIMIZED mode, overflows in intermediate operations are avoided
     where possible by using a larger integer type for the computation
-    (typically `Long_Long_Integer`). Overflow checking ensures that
+    (typically ``Long_Long_Integer``). Overflow checking ensures that
     the result fits in this larger integer type.
 
 
@@ -5029,7 +5279,7 @@ switches refine this default behavior.
     by using multi-precision arithmetic. In this case, overflow checking
     has no effect on intermediate operations (since overflow is impossible).
 
-  If two digits are present after *-gnato* then the first digit
+  If two digits are present after :switch:`-gnato` then the first digit
   sets the mode for expressions outside assertions, and the second digit
   sets the mode for expressions within assertions. Here assertions is used
   in the technical sense (which includes for example precondition and
@@ -5040,14 +5290,14 @@ switches refine this default behavior.
 
   If no digits are present, the default is to enable overflow checks
   and set STRICT mode for both kinds of expressions. This is compatible
-  with the use of *-gnato* in previous versions of GNAT.
+  with the use of :switch:`-gnato` in previous versions of GNAT.
 
   .. index:: Machine_Overflows
 
-  Note that the *-gnato??* switch does not affect the code generated
+  Note that the :switch:`-gnato??` switch does not affect the code generated
   for any floating-point operations; it applies only to integer semantics.
-  For floating-point, GNAT has the `Machine_Overflows`
-  attribute set to `False` and the normal mode of operation is to
+  For floating-point, GNAT has the ``Machine_Overflows``
+  attribute set to ``False`` and the normal mode of operation is to
   generate IEEE NaN and infinite values on overflow or invalid operations
   (such as dividing 0.0 by 0.0).
 
@@ -5059,7 +5309,7 @@ switches refine this default behavior.
   checking is also quite expensive in time and space, since in general it
   requires the use of double length arithmetic.
 
-  Note again that the default is *-gnato11* (equivalent to *-gnato1*),
+  Note again that the default is :switch:`-gnato11` (equivalent to :switch:`-gnato1`),
   so overflow checking is performed in STRICT mode by default.
 
 
@@ -5067,10 +5317,10 @@ switches refine this default behavior.
 .. index:: Elaboration checks
 .. index:: Check, elaboration
 
-:samp:`-gnatE`
+:switch:`-gnatE`
   Enables dynamic checks for access-before-elaboration
   on subprogram calls and generic instantiations.
-  Note that *-gnatE* is not necessary for safety, because in the
+  Note that :switch:`-gnatE` is not necessary for safety, because in the
   default mode, GNAT ensures statically that the checks would not fail.
   For full details of the effect and use of this switch,
   :ref:`Compiling_with_gcc`.
@@ -5080,27 +5330,27 @@ switches refine this default behavior.
 .. index:: Stack Overflow Checking
 .. index:: Checks, stack overflow checking
 
-:samp:`-fstack-check`
+:switch:`-fstack-check`
   Activates stack overflow checking. For full details of the effect and use of
   this switch see :ref:`Stack_Overflow_Checking`.
 
 .. index:: Unsuppress
 
 The setting of these switches only controls the default setting of the
-checks. You may modify them using either `Suppress` (to remove
-checks) or `Unsuppress` (to add back suppressed checks) pragmas in
+checks. You may modify them using either ``Suppress`` (to remove
+checks) or ``Unsuppress`` (to add back suppressed checks) pragmas in
 the program source.
 
 
 .. _Using_gcc_for_Syntax_Checking:
 
-Using *gcc* for Syntax Checking
--------------------------------
+Using ``gcc`` for Syntax Checking
+---------------------------------
 
 .. index:: -gnats  (gcc)
 
-:samp:`-gnats`
-  The `s` stands for 'syntax'.
+:switch:`-gnats`
+  The ``s`` stands for 'syntax'.
 
   Run GNAT in syntax checking only mode. For
   example, the command
@@ -5111,12 +5361,12 @@ Using *gcc* for Syntax Checking
 
   compiles file :file:`x.adb` in syntax-check-only mode. You can check a
   series of files in a single command
-  , and can use wild cards to specify such a group of files.
-  Note that you must specify the *-c* (compile
-  only) flag in addition to the *-gnats* flag.
+  , and can use wildcards to specify such a group of files.
+  Note that you must specify the :switch:`-c` (compile
+  only) flag in addition to the :switch:`-gnats` flag.
 
-  You may use other switches in conjunction with *-gnats*. In
-  particular, *-gnatl* and *-gnatv* are useful to control the
+  You may use other switches in conjunction with :switch:`-gnats`. In
+  particular, :switch:`-gnatl` and :switch:`-gnatv` are useful to control the
   format of any generated error messages.
 
   When the source file is empty or contains only empty lines and/or comments,
@@ -5132,30 +5382,30 @@ Using *gcc* for Syntax Checking
 
   Otherwise, the output is simply the error messages, if any. No object file or
   ALI file is generated by a syntax-only compilation. Also, no units other
-  than the one specified are accessed. For example, if a unit `X`
-  |withs| a unit `Y`, compiling unit `X` in syntax
+  than the one specified are accessed. For example, if a unit ``X``
+  |withs| a unit ``Y``, compiling unit ``X`` in syntax
   check only mode does not access the source file containing unit
-  `Y`.
+  ``Y``.
 
   .. index:: Multiple units, syntax checking
 
   Normally, GNAT allows only a single unit in a source file. However, this
   restriction does not apply in syntax-check-only mode, and it is possible
   to check a file containing multiple compilation units concatenated
-  together. This is primarily used by the `gnatchop` utility
+  together. This is primarily used by the ``gnatchop`` utility
   (:ref:`Renaming_Files_with_gnatchop`).
 
 .. _Using_gcc_for_Semantic_Checking:
 
-Using *gcc* for Semantic Checking
----------------------------------
+Using ``gcc`` for Semantic Checking
+-----------------------------------
 
 
 
 .. index:: -gnatc  (gcc)
 
-:samp:`-gnatc`
-  The `c` stands for 'check'.
+:switch:`-gnatc`
+  The ``c`` stands for 'check'.
   Causes the compiler to operate in semantic check mode,
   with full checking for all illegalities specified in the
   Ada Reference Manual, but without generation of any object code
@@ -5199,10 +5449,10 @@ indicate Ada 83 compatibility mode.
 .. index:: ACVC, Ada 83 tests
 .. index:: Ada 83 mode
 
-:samp:`-gnat83` (Ada 83 Compatibility Mode)
+:switch:`-gnat83` (Ada 83 Compatibility Mode)
   Although GNAT is primarily an Ada 95 / Ada 2005 compiler, this switch
   specifies that the program is to be compiled in Ada 83 mode. With
-  *-gnat83*, GNAT rejects most post-Ada 83 extensions and applies Ada 83
+  :switch:`-gnat83`, GNAT rejects most post-Ada 83 extensions and applies Ada 83
   semantics where this can be done easily.
   It is not possible to guarantee this switch does a perfect
   job; some subtle tests, such as are
@@ -5212,35 +5462,35 @@ indicate Ada 83 compatibility mode.
   where, due to contractual reasons, existing code needs to be maintained
   using only Ada 83 features.
 
-  With few exceptions (most notably the need to use `<>` on
+  With few exceptions (most notably the need to use ``<>`` on
   unconstrained :index:`generic formal parameters <Generic formal parameters>`,
   the use of the new Ada 95 / Ada 2005
   reserved words, and the use of packages
   with optional bodies), it is not necessary to specify the
-  *-gnat83* switch when compiling Ada 83 programs, because, with rare
+  :switch:`-gnat83` switch when compiling Ada 83 programs, because, with rare
   exceptions, Ada 95 and Ada 2005 are upwardly compatible with Ada 83. Thus
   a correct Ada 83 program is usually also a correct program
   in these later versions of the language standard. For further information
-  please refer to the `Compatibility_and_Porting_Guide` chapter in the
+  please refer to the *Compatibility and Porting Guide* chapter in the
   :title:`GNAT Reference Manual`.
 
 
 .. index:: -gnat95  (gcc)
 .. index:: Ada 95 mode
 
-:samp:`-gnat95` (Ada 95 mode)
+:switch:`-gnat95` (Ada 95 mode)
   This switch directs the compiler to implement the Ada 95 version of the
   language.
   Since Ada 95 is almost completely upwards
   compatible with Ada 83, Ada 83 programs may generally be compiled using
-  this switch (see the description of the *-gnat83* switch for further
+  this switch (see the description of the :switch:`-gnat83` switch for further
   information about Ada 83 mode).
   If an Ada 2005 program is compiled in Ada 95 mode,
   uses of the new Ada 2005 features will cause error
   messages or warnings.
 
   This switch also can be used to cancel the effect of a previous
-  *-gnat83*, *-gnat05/2005*, or *-gnat12/2012*
+  :switch:`-gnat83`, :switch:`-gnat05/2005`, or :switch:`-gnat12/2012`
   switch earlier in the command line.
 
 
@@ -5248,13 +5498,13 @@ indicate Ada 83 compatibility mode.
 .. index:: -gnat2005  (gcc)
 .. index:: Ada 2005 mode
 
-:samp:`-gnat05` or :samp:`-gnat2005` (Ada 2005 mode)
+:switch:`-gnat05` or :switch:`-gnat2005` (Ada 2005 mode)
   This switch directs the compiler to implement the Ada 2005 version of the
   language, as documented in the official Ada standards document.
   Since Ada 2005 is almost completely upwards
   compatible with Ada 95 (and thus also with Ada 83), Ada 83 and Ada 95 programs
   may generally be compiled using this switch (see the description of the
-  *-gnat83* and *-gnat95* switches for further
+  :switch:`-gnat83` and :switch:`-gnat95` switches for further
   information).
 
 
@@ -5262,14 +5512,14 @@ indicate Ada 83 compatibility mode.
 .. index:: -gnat2012  (gcc)
 .. index:: Ada 2012 mode
 
-:samp:`-gnat12` or :samp:`-gnat2012` (Ada 2012 mode)
+:switch:`-gnat12` or :switch:`-gnat2012` (Ada 2012 mode)
   This switch directs the compiler to implement the Ada 2012 version of the
   language (also the default).
   Since Ada 2012 is almost completely upwards
   compatible with Ada 2005 (and thus also with Ada 83, and Ada 95),
   Ada 83 and Ada 95 programs
   may generally be compiled using this switch (see the description of the
-  *-gnat83*, *-gnat95*, and *-gnat05/2005* switches
+  :switch:`-gnat83`, :switch:`-gnat95`, and :switch:`-gnat05/2005` switches
   for further information).
 
 
@@ -5277,7 +5527,7 @@ indicate Ada 83 compatibility mode.
 .. index:: Ada language extensions
 .. index:: GNAT extensions
 
-:samp:`-gnatX` (Enable GNAT Extensions)
+:switch:`-gnatX` (Enable GNAT Extensions)
   This switch directs the compiler to implement the latest version of the
   language (currently Ada 2012) and also to enable certain GNAT implementation
   extensions that are not part of any Ada standard. For a full list of these
@@ -5291,11 +5541,11 @@ Character Set Control
 
 .. index:: -gnati  (gcc)
 
-:samp:`-gnati{c}`
+:switch:`-gnati{c}`
   Normally GNAT recognizes the Latin-1 character set in source program
   identifiers, as described in the Ada Reference Manual.
   This switch causes
-  GNAT to recognize alternate character sets in identifiers. `c` is a
+  GNAT to recognize alternate character sets in identifiers. ``c`` is a
   single character  indicating the character set, as follows:
 
   ========== ======================================================
@@ -5319,9 +5569,9 @@ Character Set Control
 
 .. index:: -gnatW  (gcc)
 
-:samp:`-gnatW{e}`
+:switch:`-gnatW{e}`
   Specify the method of encoding for wide characters.
-  `e` is one of the following:
+  ``e`` is one of the following:
 
   ========== ======================================================
   *h*        Hex encoding (brackets coding also recognized)
@@ -5335,7 +5585,7 @@ Character Set Control
   For full details on these encoding
   methods see :ref:`Wide_Character_Encodings`.
   Note that brackets coding is always accepted, even if one of the other
-  options is specified, so for example *-gnatW8* specifies that both
+  options is specified, so for example :switch:`-gnatW8` specifies that both
   brackets and UTF-8 encodings will be recognized. The units that are
   with'ed directly or indirectly will be scanned using the specified
   representation scheme, and so if one of the non-brackets scheme is
@@ -5348,7 +5598,7 @@ Character Set Control
   brackets are considered to be normal graphic characters, and bracket sequences
   are never recognized as wide characters.
 
-  If no *-gnatW?* parameter is present, then the default
+  If no :switch:`-gnatW?` parameter is present, then the default
   representation is normally Brackets encoding only. However, if the
   first three characters of the file are 16#EF# 16#BB# 16#BF# (the standard
   byte order mark or BOM for UTF-8), then these three characters are
@@ -5360,7 +5610,7 @@ Character Set Control
   parameter.
 
 
-When no *-gnatW?* is specified, then characters (other than wide
+When no :switch:`-gnatW?` is specified, then characters (other than wide
 characters represented using brackets notation) are treated as 8-bit
 Latin-1 codes. The codes recognized are the Latin-1 graphic characters,
 and ASCII format effectors (CR, LF, HT, VT). Other lower half control
@@ -5387,8 +5637,8 @@ File Naming Control
 
 .. index:: -gnatk  (gcc)
 
-:samp:`-gnatk{n}`
-  Activates file name 'krunching'. `n`, a decimal integer in the range
+:switch:`-gnatk{n}`
+  Activates file name 'krunching'. ``n``, a decimal integer in the range
   1-999, indicates the maximum allowable length of a file name (not
   including the :file:`.ads` or :file:`.adb` extension). The default is not
   to enable file name krunching.
@@ -5402,24 +5652,24 @@ Subprogram Inlining Control
 
 .. index:: -gnatn  (gcc)
 
-:samp:`-gnatn[12]`
-  The `n` here is intended to suggest the first syllable of the
-  word 'inline'.
-  GNAT recognizes and processes `Inline` pragmas. However, for the
-  inlining to actually occur, optimization must be enabled and, in order
-  to enable inlining of subprograms specified by pragma `Inline`,
+:switch:`-gnatn[12]`
+  The ``n`` here is intended to suggest the first syllable of the word 'inline'.
+  GNAT recognizes and processes ``Inline`` pragmas. However, for inlining to
+  actually occur, optimization must be enabled and, by default, inlining of
+  subprograms across units is not performed. If you want to additionally
+  enable inlining of subprograms specified by pragma ``Inline`` across units,
   you must also specify this switch.
-  In the absence of this switch, GNAT does not attempt
-  inlining and does not need to access the bodies of
-  subprograms for which `pragma Inline` is specified if they are not
-  in the current unit.
+
+  In the absence of this switch, GNAT does not attempt inlining across units
+  and does not access the bodies of subprograms for which ``pragma Inline`` is
+  specified if they are not in the current unit.
 
   You can optionally specify the inlining level: 1 for moderate inlining across
-  modules, which is a good compromise between compilation times and performances
-  at run time, or 2 for full inlining across modules, which may bring about
+  units, which is a good compromise between compilation times and performances
+  at run time, or 2 for full inlining across units, which may bring about
   longer compilation times. If no inlining level is specified, the compiler will
-  pick it based on the optimization level: 1 for *-O1*, *-O2* or
-  *-Os* and 2 for *-O3*.
+  pick it based on the optimization level: 1 for :switch:`-O1`, :switch:`-O2` or
+  :switch:`-Os` and 2 for :switch:`-O3`.
 
   If you specify this switch the compiler will access these bodies,
   creating an extra source dependency for the resulting object file, and
@@ -5430,13 +5680,13 @@ Subprogram Inlining Control
 
 .. index:: -gnatN  (gcc)
 
-:samp:`-gnatN`
+:switch:`-gnatN`
   This switch activates front-end inlining which also
   generates additional dependencies.
 
   When using a gcc-based back end (in practice this means using any version
   of GNAT other than the JGNAT, .NET or GNAAMP versions), then the use of
-  *-gnatN* is deprecated, and the use of *-gnatn* is preferred.
+  :switch:`-gnatN` is deprecated, and the use of :switch:`-gnatn` is preferred.
   Historically front end inlining was more extensive than the gcc back end
   inlining, but that is no longer the case.
 
@@ -5449,20 +5699,20 @@ Auxiliary Output Control
 .. index:: Writing internal trees
 .. index:: Internal trees, writing to file
 
-:samp:`-gnatt`
+:switch:`-gnatt`
   Causes GNAT to write the internal tree for a unit to a file (with the
   extension :file:`.adt`.
   This not normally required, but is used by separate analysis tools.
   Typically
   these tools do the necessary compilations automatically, so you should
   not have to specify this switch in normal operation.
-  Note that the combination of switches *-gnatct*
+  Note that the combination of switches :switch:`-gnatct`
   generates a tree in the form required by ASIS applications.
 
 
 .. index:: -gnatu  (gcc)
 
-:samp:`-gnatu`
+:switch:`-gnatu`
   Print a list of units required by this compilation on :file:`stdout`.
   The listing includes all units on which the unit being compiled depends
   either directly or indirectly.
@@ -5470,12 +5720,12 @@ Auxiliary Output Control
 
 .. index:: -pass-exit-codes  (gcc)
 
-:samp:`-pass-exit-codes`
-  If this switch is not used, the exit code returned by *gcc* when
+:switch:`-pass-exit-codes`
+  If this switch is not used, the exit code returned by ``gcc`` when
   compiling multiple files indicates whether all source files have
   been successfully used to generate object files or not.
 
-  When *-pass-exit-codes* is used, *gcc* exits with an extended
+  When :switch:`-pass-exit-codes` is used, ``gcc`` exits with an extended
   exit status and allows an integrated development environment to better
   react to a compilation failure. Those exit status are:
 
@@ -5496,18 +5746,18 @@ Debugging Control
 
 .. index:: -gnatd  (gcc)
 
-:samp:`-gnatd{x}`
-  Activate internal debugging switches. `x` is a letter or digit, or
+:switch:`-gnatd{x}`
+  Activate internal debugging switches. ``x`` is a letter or digit, or
   string of letters or digits, which specifies the type of debugging
   outputs desired. Normally these are used only for internal development
   or system debugging purposes. You can find full documentation for these
-  switches in the body of the `Debug` unit in the compiler source
+  switches in the body of the ``Debug`` unit in the compiler source
   file :file:`debug.adb`.
 
 
 .. index:: -gnatG  (gcc)
 
-:samp:`-gnatG[={nn}]`
+:switch:`-gnatG[={nn}]`
   This switch causes the compiler to generate auxiliary output containing
   a pseudo-source listing of the generated expanded code. Like most Ada
   compilers, GNAT works by first transforming the high level Ada code into
@@ -5517,11 +5767,11 @@ Debugging Control
   This is very useful in understanding the implications of various Ada
   usage on the efficiency of the generated code. There are many cases in
   Ada (e.g., the use of controlled types), where simple Ada statements can
-  generate a lot of run-time code. By using *-gnatG* you can identify
+  generate a lot of run-time code. By using :switch:`-gnatG` you can identify
   these cases, and consider whether it may be desirable to modify the coding
   approach to improve efficiency.
 
-  The optional parameter `nn` if present after -gnatG specifies an
+  The optional parameter ``nn`` if present after -gnatG specifies an
   alternative maximum line length that overrides the normal default of 72.
   This value is in the range 40-999999, values less than 40 being silently
   reset to 40. The equal sign is optional.
@@ -5531,12 +5781,12 @@ Debugging Control
   additions correspond to low level features used in the generated code that
   do not have any exact analogies in pure Ada source form. The following
   is a partial list of these special constructions. See the spec
-  of package `Sprint` in file :file:`sprint.ads` for a full list.
+  of package ``Sprint`` in file :file:`sprint.ads` for a full list.
 
   .. index:: -gnatL  (gcc)
 
-  If the switch *-gnatL* is used in conjunction with
-  *-gnatG*, then the original source lines are interspersed
+  If the switch :switch:`-gnatL` is used in conjunction with
+  :switch:`-gnatG`, then the original source lines are interspersed
   in the expanded source (as comment lines with the original line number).
 
   :samp:`new {xxx} [storage_pool = {yyy}]`
@@ -5548,7 +5798,7 @@ Debugging Control
 
 
   :samp:`(if {expr} then {expr} else {expr})`
-    Conditional expression equivalent to the `x?y:z` construction in C.
+    Conditional expression equivalent to the ``x?y:z`` construction in C.
 
 
   :samp:`{target}^({source})`
@@ -5576,7 +5826,7 @@ Debugging Control
 
 
   :samp:`free {expr} [storage_pool = {xxx}]`
-    Shows the storage pool associated with a `free` statement.
+    Shows the storage pool associated with a ``free`` statement.
 
 
   :samp:`[subtype or type declaration]`
@@ -5585,12 +5835,12 @@ Debugging Control
 
 
   :samp:`freeze {type-name} [{actions}]`
-    Shows the point at which `type-name` is frozen, with possible
+    Shows the point at which ``type-name`` is frozen, with possible
     associated actions to be performed at the freeze point.
 
 
   :samp:`reference {itype}`
-    Reference (and hence definition) to internal type `itype`.
+    Reference (and hence definition) to internal type ``itype``.
 
 
   :samp:`{function-name}! ({arg}, {arg}, {arg})`
@@ -5598,7 +5848,7 @@ Debugging Control
 
 
   :samp:`{label-name} : label`
-    Declaration of label `labelname`.
+    Declaration of label ``labelname``.
 
 
   :samp:`#$ {subprogram-name}`
@@ -5608,12 +5858,12 @@ Debugging Control
 
 
   :samp:`{expr} && {expr} && {expr} ... && {expr}`
-    A multiple concatenation (same effect as `expr` & `expr` &
-    `expr`, but handled more efficiently).
+    A multiple concatenation (same effect as ``expr`` & ``expr`` &
+    ``expr``, but handled more efficiently).
 
 
   :samp:`[constraint_error]`
-    Raise the `Constraint_Error` exception.
+    Raise the ``Constraint_Error`` exception.
 
 
   :samp:`{expression}'reference`
@@ -5621,7 +5871,7 @@ Debugging Control
 
 
   :samp:`{target-type}!({source-expression})`
-    An unchecked conversion of `source-expression` to `target-type`.
+    An unchecked conversion of ``source-expression`` to ``target-type``.
 
 
   :samp:`[{numerator}/{denominator}]`
@@ -5632,35 +5882,35 @@ Debugging Control
 
 .. index:: -gnatD  (gcc)
 
-:samp:`-gnatD[=nn]`
-  When used in conjunction with *-gnatG*, this switch causes
+:switch:`-gnatD[=nn]`
+  When used in conjunction with :switch:`-gnatG`, this switch causes
   the expanded source, as described above for
-  *-gnatG* to be written to files with names
+  :switch:`-gnatG` to be written to files with names
   :file:`xxx.dg`, where :file:`xxx` is the normal file name,
   instead of to the standard output file. For
   example, if the source file name is :file:`hello.adb`, then a file
   :file:`hello.adb.dg` will be written.  The debugging
-  information generated by the *gcc* *-g* switch
+  information generated by the ``gcc`` :switch:`-g` switch
   will refer to the generated :file:`xxx.dg` file. This allows
   you to do source level debugging using the generated code which is
   sometimes useful for complex code, for example to find out exactly
   which part of a complex construction raised an exception. This switch
-  also suppress generation of cross-reference information (see
-  *-gnatx*) since otherwise the cross-reference information
+  also suppresses generation of cross-reference information (see
+  :switch:`-gnatx`) since otherwise the cross-reference information
   would refer to the :file:`.dg` file, which would cause
   confusion since this is not the original source file.
 
-  Note that *-gnatD* actually implies *-gnatG*
+  Note that :switch:`-gnatD` actually implies :switch:`-gnatG`
   automatically, so it is not necessary to give both options.
-  In other words *-gnatD* is equivalent to *-gnatDG*).
+  In other words :switch:`-gnatD` is equivalent to :switch:`-gnatDG`).
 
   .. index:: -gnatL  (gcc)
 
-  If the switch *-gnatL* is used in conjunction with
-  *-gnatDG*, then the original source lines are interspersed
+  If the switch :switch:`-gnatL` is used in conjunction with
+  :switch:`-gnatDG`, then the original source lines are interspersed
   in the expanded source (as comment lines with the original line number).
 
-  The optional parameter `nn` if present after -gnatD specifies an
+  The optional parameter ``nn`` if present after -gnatD specifies an
   alternative maximum line length that overrides the normal default of 72.
   This value is in the range 40-999999, values less than 40 being silently
   reset to 40. The equal sign is optional.
@@ -5669,7 +5919,7 @@ Debugging Control
 .. index:: -gnatr  (gcc)
 .. index:: pragma Restrictions
 
-:samp:`-gnatr`
+:switch:`-gnatr`
   This switch causes pragma Restrictions to be treated as Restriction_Warnings
   so that violation of restrictions causes warnings rather than illegalities.
   This is useful during the development process when new restrictions are added
@@ -5680,50 +5930,58 @@ Debugging Control
 
 .. index:: -gnatR  (gcc)
 
-:samp:`-gnatR[0|1|2|3[s]]`
+:switch:`-gnatR[0|1|2|3|4][e][j][m][s]`
   This switch controls output from the compiler of a listing showing
-  representation information for declared types and objects. For
-  *-gnatR0*, no information is output (equivalent to omitting
-  the *-gnatR* switch). For *-gnatR1* (which is the default,
-  so *-gnatR* with no parameter has the same effect), size and alignment
-  information is listed for declared array and record types. For
-  *-gnatR2*, size and alignment information is listed for all
-  declared types and objects. The `Linker_Section` is also listed for any
-  entity for which the `Linker_Section` is set explicitly or implicitly (the
-  latter case occurs for objects of a type for which a `Linker_Section`
+  representation information for declared types, objects and subprograms.
+  For :switch:`-gnatR0`, no information is output (equivalent to omitting
+  the :switch:`-gnatR` switch). For :switch:`-gnatR1` (which is the default,
+  so :switch:`-gnatR` with no parameter has the same effect), size and
+  alignment information is listed for declared array and record types.
+
+  For :switch:`-gnatR2`, size and alignment information is listed for all
+  declared types and objects. The ``Linker_Section`` is also listed for any
+  entity for which the ``Linker_Section`` is set explicitly or implicitly (the
+  latter case occurs for objects of a type for which a ``Linker_Section``
   is set).
 
-  Finally *-gnatR3* includes symbolic
-  expressions for values that are computed at run time for
-  variant records. These symbolic expressions have a mostly obvious
-  format with #n being used to represent the value of the n'th
-  discriminant. See source files :file:`repinfo.ads/adb` in the
-  `GNAT` sources for full details on the format of *-gnatR3*
-  output. If the switch is followed by an s (e.g., *-gnatR2s*), then
-  the output is to a file with the name :file:`file.rep` where
-  file is the name of the corresponding source file.
+  For :switch:`-gnatR3`, symbolic expressions for values that are computed
+  at run time for records are included. These symbolic expressions have
+  a mostly obvious format with #n being used to represent the value of the
+  n'th discriminant. See source files :file:`repinfo.ads/adb` in the
+  GNAT sources for full details on the format of :switch:`-gnatR3` output.
 
+  For :switch:`-gnatR4`, information for relevant compiler-generated types
+  is also listed, i.e. when they are structurally part of other declared
+  types and objects.
 
-:samp:`-gnatRm[s]`
-  This form of the switch controls output of subprogram conventions
-  and parameter passing mechanisms for all subprograms. A following
-  `s` means output to a file as described above.
+  If the switch is followed by an ``e`` (e.g. :switch:`-gnatR2e`), then
+  extended representation information for record sub-components of records
+  is included.
+
+  If the switch is followed by an ``m`` (e.g. :switch:`-gnatRm`), then
+  subprogram conventions and parameter passing mechanisms for all the
+  subprograms are included.
+
+  If the switch is followed by a ``j`` (e.g., :switch:`-gnatRj`), then
+  the output is in the JSON data interchange format specified by the
+  ECMA-404 standard. The semantic description of this JSON output is
+  available in the specification of the Repinfo unit present in the
+  compiler sources.
+
+  If the switch is followed by an ``s`` (e.g., :switch:`-gnatR3s`), then
+  the output is to a file with the name :file:`file.rep` where ``file`` is
+  the name of the corresponding source file, except if ``j`` is also
+  specified, in which case the file name is :file:`file.json`.
 
   Note that it is possible for record components to have zero size. In
   this case, the component clause uses an obvious extension of permitted
-  Ada syntax, for example `at 0 range 0 .. -1`.
-
-  Representation information requires that code be generated (since it is the
-  code generator that lays out complex data structures). If an attempt is made
-  to output representation information when no code is generated, for example
-  when a subunit is compiled on its own, then no information can be generated
-  and the compiler outputs a message to this effect.
+  Ada syntax, for example ``at 0 range 0 .. -1``.
 
 
 .. index:: -gnatS  (gcc)
 
-:samp:`-gnatS`
-  The use of the switch *-gnatS* for an
+:switch:`-gnatS`
+  The use of the switch :switch:`-gnatS` for an
   Ada compilation will cause the compiler to output a
   representation of package Standard in a form very
   close to standard Ada. It is not quite possible to
@@ -5737,20 +5995,50 @@ Debugging Control
 
 .. index:: -gnatx  (gcc)
 
-:samp:`-gnatx`
+:switch:`-gnatx`
   Normally the compiler generates full cross-referencing information in
   the :file:`ALI` file. This information is used by a number of tools,
-  including `gnatfind` and `gnatxref`. The *-gnatx* switch
+  including ``gnatfind`` and ``gnatxref``. The :switch:`-gnatx` switch
   suppresses this information. This saves some space and may slightly
   speed up compilation, but means that these tools cannot be used.
 
+
+.. index:: -fgnat-encodings  (gcc)
+
+:switch:`-fgnat-encodings=[all|gdb|minimal]`
+  This switch controls the balance between GNAT encodings and standard DWARF
+  emitted in the debug information.
+
+  Historically, old debug formats like stabs were not powerful enough to
+  express some Ada types (for instance, variant records or fixed-point types).
+  To work around this, GNAT introduced proprietary encodings that embed the
+  missing information ("GNAT encodings").
+
+  Recent versions of the DWARF debug information format are now able to
+  correctly describe most of these Ada constructs ("standard DWARF"). As
+  third-party tools started to use this format, GNAT has been enhanced to
+  generate it. However, most tools (including GDB) are still relying on GNAT
+  encodings.
+
+  To support all tools, GNAT needs to be versatile about the balance between
+  generation of GNAT encodings and standard DWARF. This is what
+  :switch:`-fgnat-encodings` is about.
+
+  * ``=all``: Emit all GNAT encodings, and then emit as much standard DWARF as
+    possible so it does not conflict with GNAT encodings.
+  * ``=gdb``: Emit as much standard DWARF as possible as long as the current
+    GDB handles it. Emit GNAT encodings for the rest.
+  * ``=minimal``: Emit as much standard DWARF as possible and emit GNAT
+    encodings for the rest.
+
+
 .. _Exception_Handling_Control:
 
 Exception Handling Control
 --------------------------
 
-GNAT uses two methods for handling exceptions at run-time. The
-`setjmp/longjmp` method saves the context when entering
+GNAT uses two methods for handling exceptions at run time. The
+``setjmp/longjmp`` method saves the context when entering
 a frame with an exception handler. Then when an exception is
 raised, the context can be restored immediately, without the
 need for tracing stack frames. This method provides very fast
@@ -5768,7 +6056,7 @@ the propagation of exceptions, but there is no overhead for
 exception handlers if no exception is raised. Note that in this
 mode and in the context of mixed Ada and C/C++ programming,
 to propagate an exception through a C/C++ code, the C/C++ code
-must be compiled with the *-funwind-tables* GCC's
+must be compiled with the :switch:`-funwind-tables` GCC's
 option.
 
 The following switches may be used to control which of the
@@ -5778,7 +6066,7 @@ two exception handling methods is used.
 
 .. index:: --RTS=sjlj  (gnatmake)
 
-:samp:`--RTS=sjlj`
+:switch:`--RTS=sjlj`
   This switch causes the setjmp/longjmp run-time (when available) to be used
   for exception handling. If the default
   mechanism for the target is zero cost exceptions, then
@@ -5793,7 +6081,7 @@ two exception handling methods is used.
 .. index:: --RTS=zcx  (gnatmake)
 .. index:: Zero Cost Exceptions
 
-:samp:`--RTS=zcx`
+:switch:`--RTS=zcx`
   This switch causes the zero cost approach to be used
   for exception handling. If this is the default mechanism for the
   target (see below), then this switch is unneeded. If the default
@@ -5803,8 +6091,8 @@ two exception handling methods is used.
   This option can only be used if the zero cost approach
   is available for the target in use, otherwise it will generate an error.
 
-The same option *--RTS* must be used both for *gcc*
-and *gnatbind*. Passing this option to *gnatmake*
+The same option :switch:`--RTS` must be used both for ``gcc``
+and ``gnatbind``. Passing this option to ``gnatmake``
 (:ref:`Switches_for_gnatmake`) will ensure the required consistency
 through the compilation and binding steps.
 
@@ -5817,7 +6105,7 @@ Units to Sources Mapping Files
 
 .. index:: -gnatem  (gcc)
 
-:samp:`-gnatem={path}`
+:switch:`-gnatem={path}`
   A mapping file is a way to communicate to the compiler two mappings:
   from unit names to file names (without any directory information) and from
   file names to path names (with full directory information). These mappings
@@ -5827,15 +6115,15 @@ Units to Sources Mapping Files
   compiler, but mapping files can improve efficiency, particularly when
   sources are read over a slow network connection. In normal operation,
   you need not be concerned with the format or use of mapping files,
-  and the *-gnatem* switch is not a switch that you would use
+  and the :switch:`-gnatem` switch is not a switch that you would use
   explicitly. It is intended primarily for use by automatic tools such as
-  *gnatmake* running under the project file facility. The
+  ``gnatmake`` running under the project file facility. The
   description here of the format of mapping files is provided
   for completeness and for possible use by other tools.
 
   A mapping file is a sequence of sets of three lines. In each set, the
-  first line is the unit name, in lower case, with `%s` appended
-  for specs and `%b` appended for bodies; the second line is the
+  first line is the unit name, in lower case, with ``%s`` appended
+  for specs and ``%b`` appended for bodies; the second line is the
   file name; and the third line is the path name.
 
   Example::
@@ -5845,15 +6133,15 @@ Units to Sources Mapping Files
        /gnat/project1/sources/main.2.ada
 
 
-  When the switch *-gnatem* is specified, the compiler will
+  When the switch :switch:`-gnatem` is specified, the compiler will
   create in memory the two mappings from the specified file. If there is
   any problem (nonexistent file, truncated file or duplicate entries),
   no mapping will be created.
 
-  Several *-gnatem* switches may be specified; however, only the
+  Several :switch:`-gnatem` switches may be specified; however, only the
   last one on the command line will be taken into account.
 
-  When using a project file, *gnatmake* creates a temporary
+  When using a project file, ``gnatmake`` creates a temporary
   mapping file and communicates it to the compiler using this switch.
 
 
@@ -5863,44 +6151,56 @@ Code Generation Control
 -----------------------
 
 The GCC technology provides a wide range of target dependent
-:samp:`-m` switches for controlling
+:switch:`-m` switches for controlling
 details of code generation with respect to different versions of
 architectures. This includes variations in instruction sets (e.g.,
 different members of the power pc family), and different requirements
 for optimal arrangement of instructions (e.g., different members of
-the x86 family). The list of available *-m* switches may be
+the x86 family). The list of available :switch:`-m` switches may be
 found in the GCC documentation.
 
-Use of these *-m* switches may in some cases result in improved
+Use of these :switch:`-m` switches may in some cases result in improved
 code performance.
 
 The GNAT technology is tested and qualified without any
-:samp:`-m` switches,
+:switch:`-m` switches,
 so generally the most reliable approach is to avoid the use of these
 switches. However, we generally expect most of these switches to work
 successfully with GNAT, and many customers have reported successful
 use of these options.
 
-Our general advice is to avoid the use of *-m* switches unless
+Our general advice is to avoid the use of :switch:`-m` switches unless
 special needs lead to requirements in this area. In particular,
-there is no point in using *-m* switches to improve performance
+there is no point in using :switch:`-m` switches to improve performance
 unless you actually see a performance improvement.
 
 
+.. _Linker_Switches:
+
+Linker Switches
+===============
+
+Linker switches can be specified after :switch:`-largs` builder switch.
+
+.. index:: -fuse-ld=name
+
+:switch:`-fuse-ld={name}`
+  Linker to be used. The default is ``bfd`` for :file:`ld.bfd`,
+  the alternative being ``gold`` for :file:`ld.gold`. The later is
+  a more recent and faster linker, but only available on GNU/Linux
+  platforms.
+
 .. _Binding_with_gnatbind:
 
-Binding with `gnatbind`
-=======================
+Binding with ``gnatbind``
+=========================
 
 .. index:: ! gnatbind
 
-This chapter describes the GNAT binder, `gnatbind`, which is used
+This chapter describes the GNAT binder, ``gnatbind``, which is used
 to bind compiled GNAT objects.
 
-Note: to invoke `gnatbind` with a project file, use the `gnat`
-driver (see :ref:`The_GNAT_Driver_and_Project_Files`).
-
-The `gnatbind` program performs four separate functions:
+The ``gnatbind`` program performs four separate functions:
 
 * Checks that a program is consistent, in accordance with the rules in
   Chapter 10 of the Ada Reference Manual. In particular, error
@@ -5915,29 +6215,29 @@ The `gnatbind` program performs four separate functions:
   This program is a small Ada package (body and spec) that
   must be subsequently compiled
   using the GNAT compiler. The necessary compilation step is usually
-  performed automatically by *gnatlink*. The two most important
+  performed automatically by ``gnatlink``. The two most important
   functions of this program
   are to call the elaboration routines of units in an appropriate order
   and to call the main program.
 
 * Determines the set of object files required by the given main program.
   This information is output in the forms of comments in the generated program,
-  to be read by the *gnatlink* utility used to link the Ada application.
+  to be read by the ``gnatlink`` utility used to link the Ada application.
 
 .. _Running_gnatbind:
 
-Running `gnatbind`
-------------------
+Running ``gnatbind``
+--------------------
 
-The form of the `gnatbind` command is
+The form of the ``gnatbind`` command is
 
 .. code-block:: sh
 
-  $ gnatbind [`switches`] `mainprog`[.ali] [`switches`]
+  $ gnatbind [ switches ] mainprog[.ali] [ switches ]
 
 
 where :file:`mainprog.adb` is the Ada file containing the main program
-unit body. `gnatbind` constructs an Ada
+unit body. ``gnatbind`` constructs an Ada
 package in two files whose names are
 :file:`b~mainprog.ads`, and :file:`b~mainprog.adb`.
 For example, if given the
@@ -5947,12 +6247,12 @@ and :file:`b~hello.adb`.
 
 When doing consistency checking, the binder takes into consideration
 any source files it can locate. For example, if the binder determines
-that the given main program requires the package `Pack`, whose
+that the given main program requires the package ``Pack``, whose
 :file:`.ALI`
 file is :file:`pack.ali` and whose corresponding source spec file is
 :file:`pack.ads`, it attempts to locate the source file :file:`pack.ads`
 (using the same search path conventions as previously described for the
-*gcc* command). If it can locate this source file, it checks that
+``gcc`` command). If it can locate this source file, it checks that
 the time stamps
 or source checksums of the source and its references to in :file:`ALI` files
 match. In other words, any :file:`ALI` files that mentions this spec must have
@@ -5969,16 +6269,16 @@ source file without compiling files that depend on the source file cause
 error messages to be generated by the binder.
 
 For example, suppose you have a main program :file:`hello.adb` and a
-package `P`, from file :file:`p.ads` and you perform the following
+package ``P``, from file :file:`p.ads` and you perform the following
 steps:
 
-* Enter `gcc -c hello.adb` to compile the main program.
+* Enter ``gcc -c hello.adb`` to compile the main program.
 
-* Enter `gcc -c p.ads` to compile package `P`.
+* Enter ``gcc -c p.ads`` to compile package ``P``.
 
 * Edit file :file:`p.ads`.
 
-* Enter `gnatbind hello`.
+* Enter ``gnatbind hello``.
 
 At this point, the file :file:`p.ali` contains an out-of-date time stamp
 because the file :file:`p.ads` has been edited. The attempt at binding
@@ -5996,38 +6296,38 @@ succeed, generating a main program. You need not normally be concerned
 with the contents of this file, but for reference purposes a sample
 binder output file is given in :ref:`Example_of_Binder_Output_File`.
 
-In most normal usage, the default mode of *gnatbind* which is to
+In most normal usage, the default mode of ``gnatbind`` which is to
 generate the main package in Ada, as described in the previous section.
 In particular, this means that any Ada programmer can read and understand
 the generated main program. It can also be debugged just like any other
-Ada code provided the *-g* switch is used for
-*gnatbind* and *gnatlink*.
+Ada code provided the :switch:`-g` switch is used for
+``gnatbind`` and ``gnatlink``.
 
 .. _Switches_for_gnatbind:
 
-Switches for *gnatbind*
------------------------
+Switches for ``gnatbind``
+-------------------------
 
-The following switches are available with `gnatbind`; details will
+The following switches are available with ``gnatbind``; details will
 be presented in subsequent sections.
 
 
 .. index:: --version  (gnatbind)
 
-:samp:`--version`
+:switch:`--version`
   Display Copyright and version, then exit disregarding all other options.
 
 
 .. index:: --help  (gnatbind)
 
-:samp:`--help`
-  If *--version* was not used, display usage, then exit disregarding
+:switch:`--help`
+  If :switch:`--version` was not used, display usage, then exit disregarding
   all other options.
 
 
 .. index:: -a  (gnatbind)
 
-:samp:`-a`
+:switch:`-a`
   Indicates that, if supported by the platform, the adainit procedure should
   be treated as an initialisation routine by the linker (a constructor). This
   is intended to be used by the Project Manager to automatically initialize
@@ -6036,41 +6336,41 @@ be presented in subsequent sections.
 
 .. index:: -aO  (gnatbind)
 
-:samp:`-aO`
+:switch:`-aO`
   Specify directory to be searched for ALI files.
 
 
 .. index:: -aI  (gnatbind)
 
-:samp:`-aI`
+:switch:`-aI`
   Specify directory to be searched for source file.
 
 
 .. index:: -A  (gnatbind)
 
-:samp:`-A[={filename}]`
+:switch:`-A[={filename}]`
   Output ALI list (to standard output or to the named file).
 
 
 .. index:: -b  (gnatbind)
 
-:samp:`-b`
+:switch:`-b`
   Generate brief messages to :file:`stderr` even if verbose mode set.
 
 
 .. index:: -c  (gnatbind)
 
-:samp:`-c`
+:switch:`-c`
   Check only, no generation of binder output file.
 
 
 .. index:: -dnn[k|m] (gnatbind)
 
-:samp:`-d{nn}[k|m]`
+:switch:`-d{nn}[k|m]`
   This switch can be used to change the default task stack size value
-  to a specified size `nn`, which is expressed in bytes by default, or
-  in kilobytes when suffixed with `k` or in megabytes when suffixed
-  with `m`.
+  to a specified size ``nn``, which is expressed in bytes by default, or
+  in kilobytes when suffixed with ``k`` or in megabytes when suffixed
+  with ``m``.
   In the absence of a :samp:`[k|m]` suffix, this switch is equivalent,
   in effect, to completing all task specs with
 
@@ -6083,64 +6383,70 @@ be presented in subsequent sections.
 
 .. index:: -D  (gnatbind)
 
-:samp:`-D{nn}[k|m]`
-  This switch can be used to change the default secondary stack size value
-  to a specified size `nn`, which is expressed in bytes by default, or
-  in kilobytes when suffixed with `k` or in megabytes when suffixed
-  with `m`.
+:switch:`-D{nn}[k|m]`
+  Set the default secondary stack size to ``nn``. The suffix indicates whether
+  the size is in bytes (no suffix), kilobytes (``k`` suffix) or megabytes
+  (``m`` suffix).
 
-  The secondary stack is used to deal with functions that return a variable
-  sized result, for example a function returning an unconstrained
-  String. There are two ways in which this secondary stack is allocated.
+  The secondary stack holds objects of unconstrained types that are returned by
+  functions, for example unconstrained Strings. The size of the secondary stack
+  can be dynamic or fixed depending on the target.
 
-  For most targets, the secondary stack is growing on demand and is allocated
-  as a chain of blocks in the heap. The -D option is not very
-  relevant. It only give some control over the size of the allocated
-  blocks (whose size is the minimum of the default secondary stack size value,
-  and the actual size needed for the current allocation request).
-
-  For certain targets, notably VxWorks 653,
-  the secondary stack is allocated by carving off a fixed ratio chunk of the
-  primary task stack. The -D option is used to define the
-  size of the environment task's secondary stack.
+  For most targets, the secondary stack grows on demand and is implemented as
+  a chain of blocks in the heap. In this case, the default secondary stack size
+  determines the initial size of the secondary stack for each task and the
+  smallest amount the secondary stack can grow by.
 
+  For Ravenscar, ZFP, and Cert run-times the size of the secondary stack is
+  fixed. This switch can be used to change the default size of these stacks.
+  The default secondary stack size can be overridden on a per-task basis if
+  individual tasks have different secondary stack requirements. This is
+  achieved through the Secondary_Stack_Size aspect that takes the size of the
+  secondary stack in bytes.
 
 .. index:: -e  (gnatbind)
 
-:samp:`-e`
+:switch:`-e`
   Output complete list of elaboration-order dependencies.
 
 
 .. index:: -Ea  (gnatbind)
 
-:samp:`-Ea`
+:switch:`-Ea`
   Store tracebacks in exception occurrences when the target supports it.
   The "a" is for "address"; tracebacks will contain hexadecimal addresses,
   unless symbolic tracebacks are enabled.
 
-  See also the packages `GNAT.Traceback` and
-  `GNAT.Traceback.Symbolic` for more information.
-  Note that on x86 ports, you must not use *-fomit-frame-pointer*
-  *gcc* option.
+  See also the packages ``GNAT.Traceback`` and
+  ``GNAT.Traceback.Symbolic`` for more information.
+  Note that on x86 ports, you must not use :switch:`-fomit-frame-pointer`
+  ``gcc`` option.
 
 
 .. index:: -Es  (gnatbind)
 
-:samp:`-Es`
+:switch:`-Es`
   Store tracebacks in exception occurrences when the target supports it.
   The "s" is for "symbolic"; symbolic tracebacks are enabled.
 
 
 .. index:: -E  (gnatbind)
 
-:samp:`-E`
-  Currently the same as `-Ea`.
+:switch:`-E`
+  Currently the same as ``-Ea``.
+
+
+.. index:: -f  (gnatbind)
+
+:switch:`-f{elab-order}`
+  Force elaboration order. For further details see :ref:`Elaboration_Control`
+  and :ref:`Elaboration_Order_Handling_in_GNAT`.
 
 
 .. index:: -F  (gnatbind)
 
-:samp:`-F`
-  Force the checks of elaboration flags. *gnatbind* does not normally
+:switch:`-F`
+  Force the checks of elaboration flags. ``gnatbind`` does not normally
   generate checks of elaboration flags for the main executable, except when
   a Stand-Alone Library is used. However, there are cases when this cannot be
   detected by gnatbind. An example is importing an interface of a Stand-Alone
@@ -6151,67 +6457,73 @@ be presented in subsequent sections.
 
 .. index:: -h  (gnatbind)
 
-:samp:`-h`
+:switch:`-h`
   Output usage (help) information.
 
 
-  .. index:: -H32  (gnatbind)
+.. index:: -H  (gnatbind)
+
+:switch:`-H`
+  Legacy elaboration order model enabled. For further details see
+  :ref:`Elaboration_Order_Handling_in_GNAT`.
 
-:samp:`-H32`
-  Use 32-bit allocations for `__gnat_malloc` (and thus for access types).
+
+.. index:: -H32  (gnatbind)
+
+:switch:`-H32`
+  Use 32-bit allocations for ``__gnat_malloc`` (and thus for access types).
   For further details see :ref:`Dynamic_Allocation_Control`.
 
 
-  .. index:: -H64  (gnatbind)
-  .. index:: __gnat_malloc
+.. index:: -H64  (gnatbind)
+.. index:: __gnat_malloc
 
-:samp:`-H64`
-  Use 64-bit allocations for `__gnat_malloc` (and thus for access types).
+:switch:`-H64`
+  Use 64-bit allocations for ``__gnat_malloc`` (and thus for access types).
   For further details see :ref:`Dynamic_Allocation_Control`.
 
 
   .. index:: -I  (gnatbind)
 
-:samp:`-I`
+:switch:`-I`
   Specify directory to be searched for source and ALI files.
 
 
   .. index:: -I-  (gnatbind)
 
-:samp:`-I-`
-  Do not look for sources in the current directory where `gnatbind` was
+:switch:`-I-`
+  Do not look for sources in the current directory where ``gnatbind`` was
   invoked, and do not look for ALI files in the directory containing the
-  ALI file named in the `gnatbind` command line.
+  ALI file named in the ``gnatbind`` command line.
 
 
   .. index:: -l  (gnatbind)
 
-:samp:`-l`
+:switch:`-l`
   Output chosen elaboration order.
 
 
   .. index:: -L  (gnatbind)
 
-:samp:`-L{xxx}`
-  Bind the units for library building. In this case the adainit and
-  adafinal procedures (:ref:`Binding_with_Non-Ada_Main_Programs`)
-  are renamed to `xxx`init and
-  `xxx`final.
+:switch:`-L{xxx}`
+  Bind the units for library building. In this case the ``adainit`` and
+  ``adafinal`` procedures (:ref:`Binding_with_Non-Ada_Main_Programs`)
+  are renamed to :samp:`{xxx}init` and
+  :samp:`{xxx}final`.
   Implies -n.
   (:ref:`GNAT_and_Libraries`, for more details.)
 
 
   .. index:: -M  (gnatbind)
 
-:samp:`-M{xyz}`
+:switch:`-M{xyz}`
   Rename generated main program from main to xyz. This option is
   supported on cross environments only.
 
-
   .. index:: -m  (gnatbind)
 
-:samp:`-m{n}`
-  Limit number of detected errors or warnings to `n`, where `n` is
+:switch:`-m{n}`
+  Limit number of detected errors or warnings to ``n``, where ``n`` is
   in the range 1..999999. The default value if no switch is
   given is 9999. If the number of warnings reaches this limit, then a
   message is output and further warnings are suppressed, the bind
@@ -6220,82 +6532,92 @@ be presented in subsequent sections.
   A value of zero means that no limit is enforced. The equal
   sign is optional.
 
+  .. index:: -minimal  (gnatbind)
+
+:switch:`-minimal`
+  Generate a binder file suitable for space-constrained applications. When
+  active, binder-generated objects not required for program operation are no
+  longer generated. **Warning:** this option comes with the following
+  limitations:
+
+  * Debugging will not work;
+  * Programs using GNAT.Compiler_Version will not link.
 
   .. index:: -n  (gnatbind)
 
-:samp:`-n`
+:switch:`-n`
   No main program.
 
 
   .. index:: -nostdinc  (gnatbind)
 
-:samp:`-nostdinc`
+:switch:`-nostdinc`
   Do not look for sources in the system default directory.
 
 
   .. index:: -nostdlib  (gnatbind)
 
-:samp:`-nostdlib`
+:switch:`-nostdlib`
   Do not look for library files in the system default directory.
 
 
   .. index:: --RTS  (gnatbind)
 
-:samp:`--RTS={rts-path}`
-  Specifies the default location of the runtime library. Same meaning as the
-  equivalent *gnatmake* flag (:ref:`Switches_for_gnatmake`).
+:switch:`--RTS={rts-path}`
+  Specifies the default location of the run-time library. Same meaning as the
+  equivalent ``gnatmake`` flag (:ref:`Switches_for_gnatmake`).
 
   .. index:: -o   (gnatbind)
 
-:samp:`-o {file}`
-  Name the output file `file` (default is :file:`b~`xxx`.adb`).
+:switch:`-o {file}`
+  Name the output file ``file`` (default is :file:`b~`xxx`.adb`).
   Note that if this option is used, then linking must be done manually,
   gnatlink cannot be used.
 
 
   .. index:: -O  (gnatbind)
 
-:samp:`-O[={filename}]`
+:switch:`-O[={filename}]`
   Output object list (to standard output or to the named file).
 
 
   .. index:: -p  (gnatbind)
 
-:samp:`-p`
+:switch:`-p`
   Pessimistic (worst-case) elaboration order.
 
 
   .. index:: -P  (gnatbind)
 
-:samp:`-P`
+:switch:`-P`
   Generate binder file suitable for CodePeer.
 
 
   .. index:: -R  (gnatbind)
 
-:samp:`-R`
+:switch:`-R`
   Output closure source list, which includes all non-run-time units that are
   included in the bind.
 
 
   .. index:: -Ra  (gnatbind)
 
-:samp:`-Ra`
-  Like *-R* but the list includes run-time units.
+:switch:`-Ra`
+  Like :switch:`-R` but the list includes run-time units.
 
 
   .. index:: -s  (gnatbind)
 
-:samp:`-s`
+:switch:`-s`
   Require all source files to be present.
 
 
   .. index:: -S  (gnatbind)
 
-:samp:`-S{xxx}`
+:switch:`-S{xxx}`
   Specifies the value to be used when detecting uninitialized scalar
   objects with pragma Initialize_Scalars.
-  The `xxx` string specified with the switch is one of:
+  The ``xxx`` string specified with the switch is one of:
 
   * ``in`` for an invalid value.
 
@@ -6327,7 +6649,7 @@ be presented in subsequent sections.
     one bits. For floating-point, a large value is set
     (see body of package System.Scalar_Values for exact values).
 
-  * `xx` for hex value (two hex digits).
+  * ``xx`` for hex value (two hex digits).
 
     The underlying scalar is set to a value consisting of repeated bytes, whose
     value corresponds to the given value. For example if ``BF`` is given,
@@ -6335,51 +6657,51 @@ be presented in subsequent sections.
 
   .. index:: GNAT_INIT_SCALARS
 
-  In addition, you can specify *-Sev* to indicate that the value is
+  In addition, you can specify :switch:`-Sev` to indicate that the value is
   to be set at run time. In this case, the program will look for an environment
-  variable of the form :samp:`GNAT_INIT_SCALARS={yy}`, where `yy` is one
-  of *in/lo/hi/`xx*` with the same meanings as above.
+  variable of the form :samp:`GNAT_INIT_SCALARS={yy}`, where ``yy`` is one
+  of :samp:`in/lo/hi/{xx}` with the same meanings as above.
   If no environment variable is found, or if it does not have a valid value,
-  then the default is *in* (invalid values).
+  then the default is ``in`` (invalid values).
 
 .. index:: -static  (gnatbind)
 
-:samp:`-static`
-  Link against a static GNAT run time.
+:switch:`-static`
+  Link against a static GNAT run-time.
 
 
   .. index:: -shared  (gnatbind)
 
-:samp:`-shared`
-  Link against a shared GNAT run time when available.
+:switch:`-shared`
+  Link against a shared GNAT run-time when available.
 
 
   .. index:: -t  (gnatbind)
 
-:samp:`-t`
+:switch:`-t`
   Tolerate time stamp and other consistency errors.
 
 
   .. index:: -T  (gnatbind)
 
-:samp:`-T{n}`
-  Set the time slice value to `n` milliseconds. If the system supports
+:switch:`-T{n}`
+  Set the time slice value to ``n`` milliseconds. If the system supports
   the specification of a specific time slice value, then the indicated value
   is used. If the system does not support specific time slice values, but
   does support some general notion of round-robin scheduling, then any
   nonzero value will activate round-robin scheduling.
 
   A value of zero is treated specially. It turns off time
-  slicing, and in addition, indicates to the tasking run time that the
+  slicing, and in addition, indicates to the tasking run-time that the
   semantics should match as closely as possible the Annex D
   requirements of the Ada RM, and in particular sets the default
-  scheduling policy to `FIFO_Within_Priorities`.
+  scheduling policy to ``FIFO_Within_Priorities``.
 
 
   .. index:: -u  (gnatbind)
 
-:samp:`-u{n}`
-  Enable dynamic stack usage, with `n` results stored and displayed
+:switch:`-u{n}`
+  Enable dynamic stack usage, with ``n`` results stored and displayed
   at program termination. A result is generated when a task
   terminates. Results that can't be stored are displayed on the fly, at
   task termination. This option is currently not supported on Itanium
@@ -6388,55 +6710,55 @@ be presented in subsequent sections.
 
   .. index:: -v  (gnatbind)
 
-:samp:`-v`
+:switch:`-v`
   Verbose mode. Write error messages, header, summary output to
   :file:`stdout`.
 
 
   .. index:: -V  (gnatbind)
 
-:samp:`-V{key}={value}`
-  Store the given association of `key` to `value` in the bind environment.
+:switch:`-V{key}={value}`
+  Store the given association of ``key`` to ``value`` in the bind environment.
   Values stored this way can be retrieved at run time using
-  `GNAT.Bind_Environment`.
+  ``GNAT.Bind_Environment``.
 
 
   .. index:: -w  (gnatbind)
 
-:samp:`-w{x}`
-  Warning mode; `x` = s/e for suppress/treat as error.
+:switch:`-w{x}`
+  Warning mode; ``x`` = s/e for suppress/treat as error.
 
 
   .. index:: -Wx  (gnatbind)
 
-:samp:`-Wx{e}`
+:switch:`-Wx{e}`
   Override default wide character encoding for standard Text_IO files.
 
 
   .. index:: -x  (gnatbind)
 
-:samp:`-x`
+:switch:`-x`
   Exclude source files (check object consistency only).
 
 
   .. index:: -Xnnn  (gnatbind)
 
-:samp:`-X{nnn}`
+:switch:`-X{nnn}`
   Set default exit status value, normally 0 for POSIX compliance.
 
 
   .. index:: -y  (gnatbind)
 
-:samp:`-y`
-  Enable leap seconds support in `Ada.Calendar` and its children.
+:switch:`-y`
+  Enable leap seconds support in ``Ada.Calendar`` and its children.
 
 
   .. index:: -z  (gnatbind)
 
-:samp:`-z`
+:switch:`-z`
   No main subprogram.
 
-You may obtain this listing of switches by running `gnatbind` with
+You may obtain this listing of switches by running ``gnatbind`` with
 no arguments.
 
 
@@ -6445,7 +6767,7 @@ no arguments.
 Consistency-Checking Modes
 ^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-As described earlier, by default `gnatbind` checks
+As described earlier, by default ``gnatbind`` checks
 that object files are consistent with one another and are consistent
 with any source files it can locate. The following switches control binder
 access to sources.
@@ -6453,7 +6775,7 @@ access to sources.
 
   .. index:: -s  (gnatbind)
 
-:samp:`-s`
+:switch:`-s`
   Require source files to be present. In this mode, the binder must be
   able to locate all source files that are referenced, in order to check
   their consistency. In normal mode, if a source file cannot be located it
@@ -6463,19 +6785,19 @@ access to sources.
 
   .. index:: -Wx  (gnatbind)
 
-:samp:`-Wx{e}`
+:switch:`-Wx{e}`
   Override default wide character encoding for standard Text_IO files.
   Normally the default wide character encoding method used for standard
   [Wide\_[Wide\_]]Text_IO files is taken from the encoding specified for
   the main source input (see description of switch
-  *-gnatWx* for the compiler). The
+  :switch:`-gnatWx` for the compiler). The
   use of this switch for the binder (which has the same set of
   possible arguments) overrides this default as specified.
 
 
   .. index:: -x  (gnatbind)
 
-:samp:`-x`
+:switch:`-x`
   Exclude source files. In this mode, the binder only checks that ALI
   files are consistent with one another. Source files are not accessed.
   The binder runs faster in this mode, and there is still a guarantee that
@@ -6483,9 +6805,9 @@ access to sources.
   If a source file has been edited since it was last compiled, and you
   specify this switch, the binder will not detect that the object
   file is out of date with respect to the source file. Note that this is the
-  mode that is automatically used by *gnatmake* because in this
+  mode that is automatically used by ``gnatmake`` because in this
   case the checking against sources has already been performed by
-  *gnatmake* in the course of compilation (i.e., before binding).
+  ``gnatmake`` in the course of compilation (i.e., before binding).
 
 
 .. _Binder_Error_Message_Control:
@@ -6500,7 +6822,7 @@ messages from the binder:
 
   .. index:: -v  (gnatbind)
 
-:samp:`-v`
+:switch:`-v`
   Verbose mode. In the normal mode, brief error messages are generated to
   :file:`stderr`. If this switch is present, a header is written
   to :file:`stdout` and any error messages are directed to :file:`stdout`.
@@ -6509,38 +6831,38 @@ messages from the binder:
 
   .. index:: -b  (gnatbind)
 
-:samp:`-b`
+:switch:`-b`
   Generate brief error messages to :file:`stderr` even if verbose mode is
   specified. This is relevant only when used with the
-  *-v* switch.
+  :switch:`-v` switch.
 
 
   .. index:: -m  (gnatbind)
 
-:samp:`-m{n}`
-  Limits the number of error messages to `n`, a decimal integer in the
+:switch:`-m{n}`
+  Limits the number of error messages to ``n``, a decimal integer in the
   range 1-999. The binder terminates immediately if this limit is reached.
 
 
   .. index:: -M  (gnatbind)
 
-:samp:`-M{xxx}`
-  Renames the generated main program from `main` to `xxx`.
+:switch:`-M{xxx}`
+  Renames the generated main program from ``main`` to ``xxx``.
   This is useful in the case of some cross-building environments, where
   the actual main program is separate from the one generated
-  by `gnatbind`.
+  by ``gnatbind``.
 
 
   .. index:: -ws  (gnatbind)
   .. index:: Warnings
 
-:samp:`-ws`
+:switch:`-ws`
   Suppress all warning messages.
 
 
   .. index:: -we  (gnatbind)
 
-:samp:`-we`
+:switch:`-we`
   Treat any warning messages as fatal errors.
 
 
@@ -6549,7 +6871,7 @@ messages from the binder:
   .. index:: Binder consistency checks
   .. index:: Consistency checks, in binder
 
-:samp:`-t`
+:switch:`-t`
   The binder performs a number of consistency checks including:
 
 
@@ -6557,7 +6879,7 @@ messages from the binder:
 
   * Check that checksums of a given source unit are consistent
 
-  * Check that consistent versions of `GNAT` were used for compilation
+  * Check that consistent versions of ``GNAT`` were used for compilation
 
   * Check consistency of configuration pragmas as required
 
@@ -6566,7 +6888,7 @@ messages from the binder:
   generated which abort the binder and prevent the output of a binder
   file and subsequent link to obtain an executable.
 
-  The *-t* switch converts these error messages
+  The :switch:`-t` switch converts these error messages
   into warnings, so that
   binding and linking can continue to completion even in the presence of such
   errors. The result may be a failed link (due to missing symbols), or a
@@ -6574,7 +6896,7 @@ messages from the binder:
 
   .. note::
 
-     This means that *-t* should be used only in unusual situations,
+     This means that :switch:`-t` should be used only in unusual situations,
      with extreme care.
 
 .. _Elaboration_Control:
@@ -6583,31 +6905,76 @@ Elaboration Control
 ^^^^^^^^^^^^^^^^^^^
 
 The following switches provide additional control over the elaboration
-order. For full details see :ref:`Elaboration_Order_Handling_in_GNAT`.
+order. For further details see :ref:`Elaboration_Order_Handling_in_GNAT`.
 
 
-  .. index:: -p  (gnatbind)
+.. index:: -f  (gnatbind)
+
+:switch:`-f{elab-order}`
+  Force elaboration order.
+
+  ``elab-order`` should be the name of a "forced elaboration order file", that
+  is, a text file containing library item names, one per line. A name of the
+  form "some.unit%s" or "some.unit (spec)" denotes the spec of Some.Unit. A
+  name of the form "some.unit%b" or "some.unit (body)" denotes the body of
+  Some.Unit. Each pair of lines is taken to mean that there is an elaboration
+  dependence of the second line on the first. For example, if the file
+  contains:
+
+  .. code-block:: ada
+
+      this (spec)
+      this (body)
+      that (spec)
+      that (body)
 
-:samp:`-p`
-  Normally the binder attempts to choose an elaboration order that is
-  likely to minimize the likelihood of an elaboration order error resulting
-  in raising a `Program_Error` exception. This switch reverses the
-  action of the binder, and requests that it deliberately choose an order
-  that is likely to maximize the likelihood of an elaboration error.
-  This is useful in ensuring portability and avoiding dependence on
-  accidental fortuitous elaboration ordering.
-
-  Normally it only makes sense to use the *-p*
-  switch if dynamic
-  elaboration checking is used (*-gnatE* switch used for compilation).
+  then the spec of This will be elaborated before the body of This, and the
+  body of This will be elaborated before the spec of That, and the spec of That
+  will be elaborated before the body of That. The first and last of these three
+  dependences are already required by Ada rules, so this file is really just
+  forcing the body of This to be elaborated before the spec of That.
+
+  The given order must be consistent with Ada rules, or else ``gnatbind`` will
+  give elaboration cycle errors. For example, if you say x (body) should be
+  elaborated before x (spec), there will be a cycle, because Ada rules require
+  x (spec) to be elaborated before x (body); you can't have the spec and body
+  both elaborated before each other.
+
+  If you later add "with That;" to the body of This, there will be a cycle, in
+  which case you should erase either "this (body)" or "that (spec)" from the
+  above forced elaboration order file.
+
+  Blank lines and Ada-style comments are ignored. Unit names that do not exist
+  in the program are ignored. Units in the GNAT predefined library are also
+  ignored.
+
+
+.. index:: -p  (gnatbind)
+
+:switch:`-p`
+  Pessimistic elaboration order
+
+  This switch is only applicable to the pre-20.x legacy elaboration models.
+  The post-20.x elaboration model uses a more informed approach of ordering
+  the units.
+
+  Normally the binder attempts to choose an elaboration order that is likely to
+  minimize the likelihood of an elaboration order error resulting in raising a
+  ``Program_Error`` exception. This switch reverses the action of the binder,
+  and requests that it deliberately choose an order that is likely to maximize
+  the likelihood of an elaboration error. This is useful in ensuring
+  portability and avoiding dependence on accidental fortuitous elaboration
+  ordering.
+
+  Normally it only makes sense to use the :switch:`-p` switch if dynamic
+  elaboration checking is used (:switch:`-gnatE` switch used for compilation).
   This is because in the default static elaboration mode, all necessary
-  `Elaborate` and `Elaborate_All` pragmas are implicitly inserted.
-  These implicit pragmas are still respected by the binder in
-  *-p* mode, so a
-  safe elaboration order is assured.
+  ``Elaborate`` and ``Elaborate_All`` pragmas are implicitly inserted.
+  These implicit pragmas are still respected by the binder in :switch:`-p`
+  mode, so a safe elaboration order is assured.
 
-  Note that *-p* is not intended for
-  production use; it is more for debugging/experimental use.
+  Note that :switch:`-p` is not intended for production use; it is more for
+  debugging/experimental use.
 
 .. _Output_Control:
 
@@ -6620,14 +6987,14 @@ generated by the binder.
 
   .. index:: -c  (gnatbind)
 
-:samp:`-c`
+:switch:`-c`
   Check only. Do not generate the binder output file. In this mode the
   binder performs all error checks but does not generate an output file.
 
 
   .. index:: -e  (gnatbind)
 
-:samp:`-e`
+:switch:`-e`
   Output complete list of elaboration-order dependencies, showing the
   reason for each dependency. This output can be rather extensive but may
   be useful in diagnosing problems with elaboration order. The output is
@@ -6636,27 +7003,27 @@ generated by the binder.
 
   .. index:: -h  (gnatbind)
 
-:samp:`-h`
+:switch:`-h`
   Output usage information. The output is written to :file:`stdout`.
 
 
   .. index:: -K  (gnatbind)
 
-:samp:`-K`
+:switch:`-K`
   Output linker options to :file:`stdout`. Includes library search paths,
   contents of pragmas Ident and Linker_Options, and libraries added
-  by `gnatbind`.
+  by ``gnatbind``.
 
 
   .. index:: -l  (gnatbind)
 
-:samp:`-l`
+:switch:`-l`
   Output chosen elaboration order. The output is written to :file:`stdout`.
 
 
   .. index:: -O  (gnatbind)
 
-:samp:`-O`
+:switch:`-O`
   Output full names of all the object files that must be linked to provide
   the Ada component of the program. The output is written to :file:`stdout`.
   This list includes the files explicitly supplied and referenced by the user
@@ -6667,9 +7034,9 @@ generated by the binder.
 
   .. index:: -o  (gnatbind)
 
-:samp:`-o {file}`
-  Set name of output file to `file` instead of the normal
-  :file:`b~`mainprog`.adb` default. Note that `file` denote the Ada
+:switch:`-o {file}`
+  Set name of output file to ``file`` instead of the normal
+  :file:`b~`mainprog`.adb` default. Note that ``file`` denote the Ada
   binder generated body filename.
   Note that if this option is used, then linking must be done manually.
   It is not possible to use gnatlink in this case, since it cannot locate
@@ -6678,8 +7045,8 @@ generated by the binder.
 
   .. index:: -r  (gnatbind)
 
-:samp:`-r`
-  Generate list of `pragma Restrictions` that could be applied to
+:switch:`-r`
+  Generate list of ``pragma Restrictions`` that could be applied to
   the current unit. This is useful for code audit purposes, and also may
   be used to improve code generation in some cases.
 
@@ -6689,19 +7056,19 @@ generated by the binder.
 Dynamic Allocation Control
 ^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-The heap control switches -- *-H32* and *-H64* --
+The heap control switches -- :switch:`-H32` and :switch:`-H64` --
 determine whether dynamic allocation uses 32-bit or 64-bit memory.
-They only affect compiler-generated allocations via `__gnat_malloc`;
-explicit calls to `malloc` and related functions from the C
+They only affect compiler-generated allocations via ``__gnat_malloc``;
+explicit calls to ``malloc`` and related functions from the C
 run-time library are unaffected.
 
-:samp:`-H32`
+:switch:`-H32`
   Allocate memory on 32-bit heap
 
 
-:samp:`-H64`
+:switch:`-H64`
   Allocate memory on 64-bit heap.  This is the default
-  unless explicitly overridden by a `'Size` clause on the access type.
+  unless explicitly overridden by a ``'Size`` clause on the access type.
 
 These switches are only effective on VMS platforms.
 
@@ -6713,7 +7080,7 @@ Binding with Non-Ada Main Programs
 
 The description so far has assumed that the main
 program is in Ada, and that the task of the binder is to generate a
-corresponding function `main` that invokes this Ada main
+corresponding function ``main`` that invokes this Ada main
 program. GNAT also supports the building of executable programs where
 the main program is not in Ada, but some of the called routines are
 written in Ada and compiled using GNAT (:ref:`Mixed_Language_Programming`).
@@ -6722,7 +7089,7 @@ The following switch is used in this situation:
 
   .. index:: -n  (gnatbind)
 
-:samp:`-n`
+:switch:`-n`
   No main program. The main program is not in Ada.
 
 In this case, most of the functions of the binder are still required,
@@ -6731,9 +7098,9 @@ containing the following callable routines:
 
   .. index:: adainit
 
-  *adainit*
+  ``adainit``
     You must call this routine to initialize the Ada part of the program by
-    calling the necessary elaboration routines. A call to `adainit` is
+    calling the necessary elaboration routines. A call to ``adainit`` is
     required before the first call to an Ada subprogram.
 
     Note that it is assumed that the basic execution environment must be setup
@@ -6746,18 +7113,18 @@ containing the following callable routines:
 
   .. index:: adafinal
 
-  *adafinal*
+  ``adafinal``
     You must call this routine to perform any library-level finalization
-    required by the Ada subprograms. A call to `adafinal` is required
+    required by the Ada subprograms. A call to ``adafinal`` is required
     after the last call to an Ada subprogram, and before the program
     terminates.
 
 .. index:: -n  (gnatbind)
 .. index:: Binder, multiple input files
 
-If the *-n* switch
+If the :switch:`-n` switch
 is given, more than one ALI file may appear on
-the command line for `gnatbind`. The normal *closure*
+the command line for ``gnatbind``. The normal ``closure``
 calculation is performed for each of the specified units. Calculating
 the closure means finding out the set of units involved by tracing
 |with| references. The reason it is necessary to be able to
@@ -6765,15 +7132,15 @@ specify more than one ALI file is that a given program may invoke two or
 more quite separate groups of Ada units.
 
 The binder takes the name of its output file from the last specified ALI
-file, unless overridden by the use of the *-o file*.
+file, unless overridden by the use of the :switch:`-o file`.
 
 .. index:: -o  (gnatbind)
 
 The output is an Ada unit in source form that can be compiled with GNAT.
-This compilation occurs automatically as part of the *gnatlink*
+This compilation occurs automatically as part of the ``gnatlink``
 processing.
 
-Currently the GNAT run time requires a FPU using 80 bits mode
+Currently the GNAT run-time requires a FPU using 80 bits mode
 precision. Under targets where this is not the default it is required to
 call GNAT.Float_Control.Reset before using floating point numbers (this
 include float computation, float input and output) in the Ada code. A
@@ -6794,7 +7161,7 @@ The following switch is used to bind programs organized in this manner:
 
   .. index:: -z  (gnatbind)
 
-:samp:`-z`
+:switch:`-z`
   Normally the binder checks that the unit name given on the command line
   corresponds to a suitable main subprogram. When this switch is used,
   a list of ALI files can be given, and the execution of the program
@@ -6802,7 +7169,7 @@ The following switch is used to bind programs organized in this manner:
   that the default wide character encoding method for standard Text_IO
   files is always set to Brackets if this switch is set (you can use
   the binder switch
-  *-Wx* to override this default).
+  :switch:`-Wx` to override this default).
 
 
 .. _Command-Line_Access:
@@ -6810,7 +7177,7 @@ The following switch is used to bind programs organized in this manner:
 Command-Line Access
 -------------------
 
-The package `Ada.Command_Line` provides access to the command-line
+The package ``Ada.Command_Line`` provides access to the command-line
 arguments and program name. In order for this interface to operate
 correctly, the two variables
 
@@ -6823,35 +7190,35 @@ correctly, the two variables
 .. index:: gnat_argc
 
 are declared in one of the GNAT library routines. These variables must
-be set from the actual `argc` and `argv` values passed to the
-main program. With no *n* present, `gnatbind`
+be set from the actual ``argc`` and ``argv`` values passed to the
+main program. With no *n* present, ``gnatbind``
 generates the C main program to automatically set these variables.
 If the *n* switch is used, there is no automatic way to
 set these variables. If they are not set, the procedures in
-`Ada.Command_Line` will not be available, and any attempt to use
-them will raise `Constraint_Error`. If command line access is
-required, your main program must set `gnat_argc` and
-`gnat_argv` from the `argc` and `argv` values passed to
+``Ada.Command_Line`` will not be available, and any attempt to use
+them will raise ``Constraint_Error``. If command line access is
+required, your main program must set ``gnat_argc`` and
+``gnat_argv`` from the ``argc`` and ``argv`` values passed to
 it.
 
 
 .. _Search_Paths_for_gnatbind:
 
-Search Paths for `gnatbind`
----------------------------
+Search Paths for ``gnatbind``
+-----------------------------
 
 The binder takes the name of an ALI file as its argument and needs to
 locate source files as well as other ALI files to verify object consistency.
 
-For source files, it follows exactly the same search rules as *gcc*
+For source files, it follows exactly the same search rules as ``gcc``
 (see :ref:`Search_Paths_and_the_Run-Time_Library_RTL`). For ALI files the
 directories searched are:
 
 * The directory containing the ALI file named in the command line, unless
-  the switch *-I-* is specified.
+  the switch :switch:`-I-` is specified.
 
-* All directories specified by *-I*
-  switches on the `gnatbind`
+* All directories specified by :switch:`-I`
+  switches on the ``gnatbind``
   command line, in the order given.
 
   .. index:: ADA_PRJ_OBJECTS_FILE
@@ -6874,23 +7241,23 @@ directories searched are:
 
 * The content of the :file:`ada_object_path` file which is part of the GNAT
   installation tree and is used to store standard libraries such as the
-  GNAT Run Time Library (RTL) unless the switch *-nostdlib* is
+  GNAT Run-Time Library (RTL) unless the switch :switch:`-nostdlib` is
   specified. See :ref:`Installing_a_library`
 
 .. index:: -I  (gnatbind)
 .. index:: -aI  (gnatbind)
 .. index:: -aO  (gnatbind)
 
-In the binder the switch *-I*
+In the binder the switch :switch:`-I`
 is used to specify both source and
-library file paths. Use *-aI*
+library file paths. Use :switch:`-aI`
 instead if you want to specify
-source paths only, and *-aO*
+source paths only, and :switch:`-aO`
 if you want to specify library paths
 only. This means that for the binder
-:samp:`-I{dir}` is equivalent to
-:samp:`-aI{dir}`
-:samp:`-aO`{dir}`.
+:switch:`-I{dir}` is equivalent to
+:switch:`-aI{dir}`
+:switch:`-aO`{dir}`.
 The binder generates the bind file (a C language source file) in the
 current working directory.
 
@@ -6899,7 +7266,7 @@ current working directory.
 .. index:: Interfaces
 .. index:: GNAT
 
-The packages `Ada`, `System`, and `Interfaces` and their
+The packages ``Ada``, ``System``, and ``Interfaces`` and their
 children make up the GNAT Run-Time Library, together with the package
 GNAT and its children, which contain a set of useful additional
 library functions provided by GNAT. The sources for these units are
@@ -6918,16 +7285,16 @@ development environments much more flexible.
 
 .. _Examples_of_gnatbind_Usage:
 
-Examples of `gnatbind` Usage
-----------------------------
+Examples of ``gnatbind`` Usage
+------------------------------
 
-Here are some examples of `gnatbind` invovations:
+Here are some examples of ``gnatbind`` invovations:
 
   ::
 
      gnatbind hello
 
-  The main program `Hello` (source program in :file:`hello.adb`) is
+  The main program ``Hello`` (source program in :file:`hello.adb`) is
   bound using the standard switch settings. The generated main program is
   :file:`b~hello.adb`. This is the normal, default use of the binder.
 
@@ -6935,7 +7302,7 @@ Here are some examples of `gnatbind` invovations:
 
      gnatbind hello -o mainprog.adb
 
-  The main program `Hello` (source program in :file:`hello.adb`) is
+  The main program ``Hello`` (source program in :file:`hello.adb`) is
   bound using the standard switch settings. The generated main program is
   :file:`mainprog.adb` with the associated spec in
   :file:`mainprog.ads`. Note that you must specify the body here not the
@@ -6945,38 +7312,35 @@ Here are some examples of `gnatbind` invovations:
 
 .. _Linking_with_gnatlink:
 
-Linking with *gnatlink*
-=======================
+Linking with ``gnatlink``
+=========================
 
 .. index:: ! gnatlink
 
-This chapter discusses *gnatlink*, a tool that links
+This chapter discusses ``gnatlink``, a tool that links
 an Ada program and builds an executable file. This utility
-invokes the system linker (via the *gcc* command)
+invokes the system linker (via the ``gcc`` command)
 with a correct list of object files and library references.
-*gnatlink* automatically determines the list of files and
+``gnatlink`` automatically determines the list of files and
 references for the Ada part of a program. It uses the binder file
-generated by the *gnatbind* to determine this list.
-
-Note: to invoke `gnatlink` with a project file, use the `gnat`
-driver (see :ref:`The_GNAT_Driver_and_Project_Files`).
+generated by the ``gnatbind`` to determine this list.
 
 .. _Running_gnatlink:
 
-Running *gnatlink*
-------------------
+Running ``gnatlink``
+--------------------
 
-The form of the *gnatlink* command is
+The form of the ``gnatlink`` command is
 
 
 .. code-block:: sh
 
-    $ gnatlink [`switches`] `mainprog`[.ali]
-               [`non-Ada objects`] [`linker options`]
+    $ gnatlink [ switches ] mainprog [.ali]
+               [ non-Ada objects ] [ linker options ]
 
 
 
-The arguments of *gnatlink* (switches, main :file:`ALI` file,
+The arguments of ``gnatlink`` (switches, main ``ALI`` file,
 non-Ada objects
 or linker options) may be in any order, provided that no non-Ada object may
 be mistaken for a main :file:`ALI` file.
@@ -6986,32 +7350,32 @@ whose name is the concatenation of :file:`F` and :file:`.ali`.
 
 :file:`mainprog.ali` references the ALI file of the main program.
 The :file:`.ali` extension of this file can be omitted. From this
-reference, *gnatlink* locates the corresponding binder file
+reference, ``gnatlink`` locates the corresponding binder file
 :file:`b~mainprog.adb` and, using the information in this file along
 with the list of non-Ada objects and linker options, constructs a
 linker command file to create the executable.
 
-The arguments other than the *gnatlink* switches and the main
+The arguments other than the ``gnatlink`` switches and the main
 :file:`ALI` file are passed to the linker uninterpreted.
 They typically include the names of
 object files for units written in other languages than Ada and any library
 references required to resolve references in any of these foreign language
-units, or in `Import` pragmas in any Ada units.
+units, or in ``Import`` pragmas in any Ada units.
 
-`linker options` is an optional list of linker specific
+``linker options`` is an optional list of linker specific
 switches.
-The default linker called by gnatlink is *gcc* which in
+The default linker called by gnatlink is ``gcc`` which in
 turn calls the appropriate system linker.
 
-One useful option for the linker is *-s*: it reduces the size of the
+One useful option for the linker is :switch:`-s`: it reduces the size of the
 executable by removing all symbol table and relocation information from the
 executable.
 
-Standard options for the linker such as *-lmy_lib* or
-*-Ldir* can be added as is.
+Standard options for the linker such as :switch:`-lmy_lib` or
+:switch:`-Ldir` can be added as is.
 For options that are not recognized by
-*gcc* as linker options, use the *gcc* switches
-*-Xlinker* or *-Wl,*.
+``gcc`` as linker options, use the ``gcc`` switches
+:switch:`-Xlinker` or :switch:`-Wl,`.
 
 Refer to the GCC documentation for
 details.
@@ -7023,46 +7387,46 @@ Here is an example showing how to generate a linker map:
      $ gnatlink my_prog -Wl,-Map,MAPFILE
 
 
-Using `linker options` it is possible to set the program stack and
+Using ``linker options`` it is possible to set the program stack and
 heap size.
 See :ref:`Setting_Stack_Size_from_gnatlink` and
 :ref:`Setting_Heap_Size_from_gnatlink`.
 
-*gnatlink* determines the list of objects required by the Ada
+``gnatlink`` determines the list of objects required by the Ada
 program and prepends them to the list of objects passed to the linker.
-*gnatlink* also gathers any arguments set by the use of
-`pragma Linker_Options` and adds them to the list of arguments
+``gnatlink`` also gathers any arguments set by the use of
+``pragma Linker_Options`` and adds them to the list of arguments
 presented to the linker.
 
 
 .. _Switches_for_gnatlink:
 
-Switches for *gnatlink*
------------------------
+Switches for ``gnatlink``
+-------------------------
 
-The following switches are available with the *gnatlink* utility:
+The following switches are available with the ``gnatlink`` utility:
 
 .. index:: --version  (gnatlink)
 
-:samp:`--version`
+:switch:`--version`
   Display Copyright and version, then exit disregarding all other options.
 
 
 .. index:: --help  (gnatlink)
 
-:samp:`--help`
-  If *--version* was not used, display usage, then exit disregarding
+:switch:`--help`
+  If :switch:`--version` was not used, display usage, then exit disregarding
   all other options.
 
 
 .. index:: Command line length
 .. index:: -f  (gnatlink)
 
-:samp:`-f`
-  On some targets, the command line length is limited, and *gnatlink*
+:switch:`-f`
+  On some targets, the command line length is limited, and ``gnatlink``
   will generate a separate file for the linker if the list of object files
   is too long.
-  The *-f* switch forces this file
+  The :switch:`-f` switch forces this file
   to be generated even if
   the limit is not exceeded. This is useful in some cases to deal with
   special situations where the command line length is exceeded.
@@ -7071,16 +7435,16 @@ The following switches are available with the *gnatlink* utility:
 .. index:: Debugging information, including
 .. index:: -g  (gnatlink)
 
-:samp:`-g`
+:switch:`-g`
   The option to include debugging information causes the Ada bind file (in
-  other words, :file:`b~mainprog.adb`) to be compiled with *-g*.
+  other words, :file:`b~mainprog.adb`) to be compiled with :switch:`-g`.
   In addition, the binder does not delete the :file:`b~mainprog.adb`,
   :file:`b~mainprog.o` and :file:`b~mainprog.ali` files.
-  Without *-g*, the binder removes these files by default.
+  Without :switch:`-g`, the binder removes these files by default.
 
 .. index:: -n  (gnatlink)
 
-:samp:`-n`
+:switch:`-n`
   Do not compile the file generated by the binder. This may be used when
   a link is rerun with different options, but there is no need to recompile
   the binder file.
@@ -7088,7 +7452,7 @@ The following switches are available with the *gnatlink* utility:
 
 .. index:: -v  (gnatlink)
 
-:samp:`-v`
+:switch:`-v`
   Verbose mode. Causes additional information to be output, including a full
   list of the included object files.
   This switch option is most useful when you want
@@ -7097,70 +7461,62 @@ The following switches are available with the *gnatlink* utility:
 
 .. index:: -v -v  (gnatlink)
 
-:samp:`-v -v`
+:switch:`-v -v`
   Very verbose mode. Requests that the compiler operate in verbose mode when
   it compiles the binder file, and that the system linker run in verbose mode.
 
 
 .. index:: -o  (gnatlink)
 
-:samp:`-o {exec-name}`
-  `exec-name` specifies an alternate name for the generated
+:switch:`-o {exec-name}`
+  ``exec-name`` specifies an alternate name for the generated
   executable program. If this switch is omitted, the executable has the same
-  name as the main unit. For example, `gnatlink try.ali` creates
+  name as the main unit. For example, ``gnatlink try.ali`` creates
   an executable called :file:`try`.
 
 
-.. index:: -b  (gnatlink)
-
-:samp:`-b {target}`
-  Compile your program to run on `target`, which is the name of a
-  system configuration. You must have a GNAT cross-compiler built if
-  `target` is not the same as your host system.
-
-
 .. index:: -B  (gnatlink)
 
-:samp:`-B{dir}`
-  Load compiler executables (for example, `gnat1`, the Ada compiler)
-  from `dir` instead of the default location. Only use this switch
+:switch:`-B{dir}`
+  Load compiler executables (for example, ``gnat1``, the Ada compiler)
+  from ``dir`` instead of the default location. Only use this switch
   when multiple versions of the GNAT compiler are available.
-  See the `Directory Options` section in :title:`The_GNU_Compiler_Collection`
-  for further details. You would normally use the *-b* or
-  *-V* switch instead.
+  See the ``Directory Options`` section in :title:`The_GNU_Compiler_Collection`
+  for further details. You would normally use the :switch:`-b` or
+  :switch:`-V` switch instead.
 
 
 .. index:: -M  (gnatlink)
 
-:samp:`-M`
+:switch:`-M`
   When linking an executable, create a map file. The name of the map file
   has the same name as the executable with extension ".map".
 
 
 .. index:: -M=  (gnatlink)
 
-:samp:`-M={mapfile}`
+:switch:`-M={mapfile}`
   When linking an executable, create a map file. The name of the map file is
-  `mapfile`.
+  ``mapfile``.
 
 
 .. index:: --GCC=compiler_name  (gnatlink)
 
-:samp:`--GCC={compiler_name}`
+:switch:`--GCC={compiler_name}`
   Program used for compiling the binder file. The default is
-  ``gcc``. You need to use quotes around `compiler_name` if
-  `compiler_name` contains spaces or other separator characters.
-  As an example ``--GCC="foo -x -y"`` will instruct *gnatlink* to
+  ``gcc``. You need to use quotes around ``compiler_name`` if
+  ``compiler_name`` contains spaces or other separator characters.
+  As an example ``--GCC="foo -x -y"`` will instruct ``gnatlink`` to
   use ``foo -x -y`` as your compiler. Note that switch ``-c`` is always
   inserted after your command name. Thus in the above example the compiler
-  command that will be used by *gnatlink* will be ``foo -c -x -y``.
+  command that will be used by ``gnatlink`` will be ``foo -c -x -y``.
   A limitation of this syntax is that the name and path name of the executable
   itself must not include any embedded spaces. If the compiler executable is
   different from the default one (gcc or <prefix>-gcc), then the back-end
   switches in the ALI file are not used to compile the binder generated source.
   For example, this is the case with ``--GCC="foo -x -y"``. But the back end
   switches will be used for ``--GCC="gcc -gnatv"``. If several
-  ``--GCC=compiler_name`` are used, only the last `compiler_name`
+  ``--GCC=compiler_name`` are used, only the last ``compiler_name``
   is taken into account. However, all the additional switches are also taken
   into account. Thus,
   ``--GCC="foo -x -y" --GCC="bar -z -t"`` is equivalent to
@@ -7169,13 +7525,13 @@ The following switches are available with the *gnatlink* utility:
 
 .. index:: --LINK=  (gnatlink)
 
-:samp:`--LINK={name}`
-  `name` is the name of the linker to be invoked. This is especially
+:switch:`--LINK={name}`
+  ``name`` is the name of the linker to be invoked. This is especially
   useful in mixed language programs since languages such as C++ require
   their own linker to be used. When this switch is omitted, the default
-  name for the linker is *gcc*. When this switch is used, the
-  specified linker is called instead of *gcc* with exactly the same
-  parameters that would have been passed to *gcc* so if the desired
+  name for the linker is ``gcc``. When this switch is used, the
+  specified linker is called instead of ``gcc`` with exactly the same
+  parameters that would have been passed to ``gcc`` so if the desired
   linker requires different parameters it is necessary to use a wrapper
   script that massages the parameters before invoking the real linker. It
   may be useful to control the exact invocation by using the verbose
@@ -7184,19 +7540,19 @@ The following switches are available with the *gnatlink* utility:
 
 .. _Using_the_GNU_make_Utility:
 
-Using the GNU `make` Utility
-============================
+Using the GNU ``make`` Utility
+==============================
 
 .. index:: make (GNU), GNU make
 
 This chapter offers some examples of makefiles that solve specific
 problems. It does not explain how to write a makefile, nor does it try to replace the
-*gnatmake* utility (:ref:`The_GNAT_Make_Program_gnatmake`).
+``gnatmake`` utility (:ref:`The_GNAT_Make_Program_gnatmake`).
 
 All the examples in this section are specific to the GNU version of
-make. Although *make* is a standard utility, and the basic language
+make. Although ``make`` is a standard utility, and the basic language
 is the same, these examples use some advanced features found only in
-`GNU make`.
+``GNU make``.
 
 .. _Using_gnatmake_in_a_Makefile:
 
@@ -7213,7 +7569,7 @@ time of very big applications while maintaining full coherence at
 each step of the build process.
 
 The list of dependencies are handled automatically by
-*gnatmake*. The Makefile is simply used to call gnatmake in each of
+``gnatmake``. The Makefile is simply used to call gnatmake in each of
 the appropriate directories.
 
 Note that you should also read the example on how to automatically
@@ -7316,13 +7672,13 @@ automatically.
 
 The example below presents two methods. The first one, although less
 general, gives you more control over the list. It involves wildcard
-characters, that are automatically expanded by *make*. Its
+characters, that are automatically expanded by ``make``. Its
 shortcoming is that you need to explicitly specify some of the
 organization of your project, such as for instance the directory tree
 depth, whether some directories are found in a separate tree, etc.
 
 The second method is the most general one. It requires an external
-program, called *find*, which is standard on all Unix systems. All
+program, called ``find``, which is standard on all Unix systems. All
 the directories found under a given root directory will be added to the
 list.
 
@@ -7354,7 +7710,7 @@ list.
   # Note that the argument(s) to wildcard below should end with a '/'.
   # Since wildcards also return file names, we have to filter them out
   # to avoid duplicate directory names.
-  # We thus use make's `dir` and `sort` functions.
+  # We thus use make's ``dir`` and ``sort`` functions.
   # It sets DIRs to the following value (note that the directories aaa and baa
   # are not given, unless you change the arguments to wildcard).
   # DIRS= ./a/a/ ./b/ ./a/aa/ ./a/ab/ ./a/ac/ ./b/ba/ ./b/bb/ ./b/bc/
@@ -7411,7 +7767,7 @@ operating systems limit the length of the command line. It is thus hard to give
 gnatmake the list of source and object directories.
 
 This example shows how you can set up environment variables, which will
-make *gnatmake* behave exactly as if the directories had been
+make ``gnatmake`` behave exactly as if the directories had been
 specified on the command line, but have a much higher length limit (or
 even none on most systems).
 
@@ -7423,7 +7779,7 @@ path (where the ALI files are found) is different from the sources patch.
 
 Note a small trick in the Makefile below: for efficiency reasons, we
 create two temporary variables (SOURCE_LIST and OBJECT_LIST), that are
-expanded immediately by `make`. This way we overcome the standard
+expanded immediately by ``make``. This way we overcome the standard
 make behavior which is to expand the variables only when they are
 actually used.