Browse Source

Use backquotes to avoid a sphinx unexpected error:
Unknown target name: "bootstrap".



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@349301 91177308-0d34-0410-b5e6-96231b3b80d8

Sylvestre Ledru 6 years ago
parent
commit
c23bed32d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/AdvancedBuilds.rst

+ 1 - 1
docs/AdvancedBuilds.rst

@@ -51,7 +51,7 @@ CMake option, each variable separated by a ";". As example:
   $ cmake -G Ninja -DCLANG_ENABLE_BOOTSTRAP=On -DCLANG_BOOTSTRAP_PASSTHROUGH="CMAKE_INSTALL_PREFIX;CMAKE_VERBOSE_MAKEFILE" <path to source>
   $ cmake -G Ninja -DCLANG_ENABLE_BOOTSTRAP=On -DCLANG_BOOTSTRAP_PASSTHROUGH="CMAKE_INSTALL_PREFIX;CMAKE_VERBOSE_MAKEFILE" <path to source>
   $ ninja stage2
   $ ninja stage2
 
 
-CMake options starting by BOOTSTRAP_ will be passed only to the stage2 build.
+CMake options starting by ``BOOTSTRAP_`` will be passed only to the stage2 build.
 This gives the opportunity to use Clang specific build flags.
 This gives the opportunity to use Clang specific build flags.
 For example, the following CMake call will enabled '-fno-addrsig' only during
 For example, the following CMake call will enabled '-fno-addrsig' only during
 the stage2 build for C and C++.
 the stage2 build for C and C++.