diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:04:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:04:05 +0000 |
commit | 676fbe8105eeb6ff4bb2ed261cb212fcfdbe7b63 (patch) | |
tree | 02a1ac369cb734d0abfa5000dd86e5b7797e6a74 /docs/LibASTMatchersTutorial.rst | |
parent | c7e70c433efc6953dc3888b9fbf9f3512d7da2b0 (diff) |
Diffstat (limited to 'docs/LibASTMatchersTutorial.rst')
-rw-r--r-- | docs/LibASTMatchersTutorial.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/LibASTMatchersTutorial.rst b/docs/LibASTMatchersTutorial.rst index 832b47efd1b86..8b7ee7f98fa2d 100644 --- a/docs/LibASTMatchersTutorial.rst +++ b/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 @@ -113,6 +113,7 @@ CMakeLists.txt should have the following contents: LoopConvert.cpp ) target_link_libraries(loop-convert + PRIVATE clangTooling clangBasic clangASTMatchers |