diff options
Diffstat (limited to 'clang/docs/LibASTMatchersTutorial.rst')
-rw-r--r-- | clang/docs/LibASTMatchersTutorial.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/docs/LibASTMatchersTutorial.rst b/clang/docs/LibASTMatchersTutorial.rst index 9e95a7f18db..8b7ee7f98fa 100644 --- a/clang/docs/LibASTMatchersTutorial.rst +++ b/clang/docs/LibASTMatchersTutorial.rst @@ -19,16 +19,16 @@ As Clang is part of the LLVM project, you'll need to download LLVM's source code first. Both Clang and LLVM are maintained as Subversion repositories, but we'll be accessing them through the git mirror. For further information, see the `getting started -guide <http://llvm.org/docs/GettingStarted.html>`_. +guide <https://llvm.org/docs/GettingStarted.html>`_. .. code-block:: console mkdir ~/clang-llvm && cd ~/clang-llvm - git clone http://llvm.org/git/llvm.git + git clone https://llvm.org/git/llvm.git cd llvm/tools - git clone http://llvm.org/git/clang.git + git clone https://llvm.org/git/clang.git cd clang/tools - git clone http://llvm.org/git/clang-tools-extra.git extra + git clone https://llvm.org/git/clang-tools-extra.git extra Next you need to obtain the CMake build system and Ninja build tool. You may already have CMake installed, but current binary versions of CMake |