summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-05-17 16:22:26 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-05-17 16:22:26 +0000
commit777cad2c448f964f80986c0427bbf36d021aba4f (patch)
tree9793bf38baa9439b8c4793f97bf9f2abf2c79d17
parent198611b0ff7e0937166f90f758fdf439db6db8ab (diff)
downloadbcm5719-llvm-777cad2c448f964f80986c0427bbf36d021aba4f.tar.gz
bcm5719-llvm-777cad2c448f964f80986c0427bbf36d021aba4f.zip
[Docs] Remove SVN checkout from LLDB build steps
This removes several older paragraphs in the LLDB build steps for Unix systems which suggested checking out various components via SVN. Since there's a separate page about getting the LLDB source which only mentions Git, it seems appropriate to remove this older info from the build docs. Patch by: J. Ryan Stinnett Differential revision: https://reviews.llvm.org/D62041 llvm-svn: 361046
-rw-r--r--lldb/docs/resources/build.rst51
1 files changed, 0 insertions, 51 deletions
diff --git a/lldb/docs/resources/build.rst b/lldb/docs/resources/build.rst
index 4c8d2425fdb..377c5449864 100644
--- a/lldb/docs/resources/build.rst
+++ b/lldb/docs/resources/build.rst
@@ -236,59 +236,8 @@ On NetBSD one might run:
> pkgin install swig python27 cmake ninja-build
-
-**Building LLDB**
-
-We first need to checkout the source trees into the appropriate locations. Both
-Clang and LLDB build as subprojects of LLVM. This means we will be checking out
-the source for both Clang and LLDB into the tools subdirectory of LLVM. We will
-be setting up a directory hierarchy looking something like this:
-
-::
-
- llvm
- |
- `-- tools
- |
- +-- clang
- |
- `-- lldb
-
-For reference, we will call the root of the LLVM project tree $llvm, and the
-roots of the Clang and LLDB source trees $clang and $lldb respectively.
-
-Change to the directory where you want to do development work and checkout
-LLVM:
-
-::
-
- > svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
-
-
-Now switch to LLVM’s tools subdirectory and checkout both Clang and LLDB:
-
-::
-
- > cd $llvm/tools
- > svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
- > svn co http://llvm.org/svn/llvm-project/lldb/trunk lldb
-
-In general, building the LLDB trunk revision requires trunk revisions of both
-LLVM and Clang.
-
-It is highly recommended that you build the system out of tree. Create a second
-build directory and configure the LLVM project tree to your specifications as
-outlined in LLVM’s Getting Started Guide. A typical build procedure might be:
-
-::
-
- > cd $llvm/..
- > mkdir build
- > cd build
-
**To build with CMake**
-
Using CMake is documented on the `Building LLVM with CMake
<http://llvm.org/docs/CMake.html>`_ page. Building LLDB is possible using one
of the following generators:
OpenPOWER on IntegriCloud