[libcxx] r268614 - Fix sphinx build. This is a temporary solution.

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Thu May 5 01:12:26 PDT 2016


Author: ericwf
Date: Thu May  5 03:12:25 2016
New Revision: 268614

URL: http://llvm.org/viewvc/llvm-project?rev=268614&view=rev
Log:
Fix sphinx build. This is a temporary solution.

Modified:
    libcxx/trunk/docs/TestingLibcxx.rst

Modified: libcxx/trunk/docs/TestingLibcxx.rst
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/docs/TestingLibcxx.rst?rev=268614&r1=268613&r2=268614&view=diff
==============================================================================
--- libcxx/trunk/docs/TestingLibcxx.rst (original)
+++ libcxx/trunk/docs/TestingLibcxx.rst Thu May  5 03:12:25 2016
@@ -98,7 +98,7 @@ configuration. Passing the option on the
 
 .. program:: lit
 
-.. option:: cxx_under_test=path/to/compiler
+.. option:: --cxx_under_test=<path/to/compiler>
 
   Specify the compiler used to build the tests.
 
@@ -108,24 +108,24 @@ configuration. Passing the option on the
 
   Change the standard version used when building the tests.
 
-.. option:: libcxx_site_config=path/to/lit.site.cfg
+.. option:: --libcxx_site_config=<path/to/lit.site.cfg>
 
   Specify the site configuration to use when running the tests.  This option
   overrides the enviroment variable LIBCXX_SITE_CONFIG.
 
-.. option:: libcxx_headers=path/to/headers
+.. option:: --libcxx_headers=<path/to/headers>
 
   Specify the libc++ headers that are tested. By default the headers in the
   source tree are used.
 
-.. option:: cxx_library_root=path/to/lib/
+.. option:: --cxx_library_root=<path/to/lib/>
 
   Specify the directory of the libc++ library to be tested. By default the
   library folder of the build directory is used. This option cannot be used
   when use_system_lib is provided.
 
 
-.. option:: cxx_runtime_root=path/to/lib/
+.. option:: --cxx_runtime_root=<path/to/lib/>
 
   Specify the directory of the libc++ library to use at runtime. This directory
   is not added to the linkers search path. This can be used to compile tests
@@ -133,21 +133,21 @@ configuration. Passing the option on the
   for this option is `cxx_library_root`. This option cannot be used
   when use_system_lib is provided.
 
-.. option:: use_system_lib=<bool>
+.. option:: --use_system_lib=<bool>
 
   **Default**: False
 
   Enable or disable testing against the installed version of libc++ library.
   Note: This does not use the installed headers.
 
-.. option:: use_lit_shell=<bool>
+.. option:: --use_lit_shell=<bool>
 
   Enable or disable the use of LIT's internal shell in ShTests. If the
   environment variable LIT_USE_INTERNAL_SHELL is present then that is used as
   the default value. Otherwise the default value is True on Windows and False
   on every other platform.
 
-.. option:: no_default_flags=<bool>
+.. option:: --no_default_flags=<bool>
 
   **Default**: False
 
@@ -155,16 +155,16 @@ configuration. Passing the option on the
   option is used only flags specified using the compile_flags and link_flags
   will be used.
 
-.. option:: compile_flags="list-of-args"
+.. option:: --compile_flags="<list-of-args>"
 
   Specify additional compile flags as a space delimited string.
   Note: This options should not be used to change the standard version used.
 
-.. option:: link_flags="list-of-args"
+.. option:: --link_flags="<list-of-args>"
 
   Specify additional link flags as a space delimited string.
 
-.. option:: debug_level=<level>
+.. option:: --debug_level=<level>
 
   **Values**: 0, 1
 
@@ -188,7 +188,7 @@ configuration. Passing the option on the
 Environment Variables
 ---------------------
 
-.. envvar:: LIBCXX_SITE_CONFIG=path/to/lit.site.cfg
+.. envvar:: LIBCXX_SITE_CONFIG=<path/to/lit.site.cfg>
 
   Specify the site configuration to use when running the tests.
   Also see :option:`libcxx_site_config`.




More information about the cfe-commits mailing list