summaryrefslogtreecommitdiff
path: root/docs/GettingStarted.rst
diff options
context:
space:
mode:
authorPhilip Reames <listmail@philipreames.com>2016-02-07 16:35:04 +0000
committerPhilip Reames <listmail@philipreames.com>2016-02-07 16:35:04 +0000
commite51c15a4f472b7a2b8f1ca25542a592742b174f6 (patch)
tree2c32ef7c0855578ee052c5d0830884b536f5e350 /docs/GettingStarted.rst
parenta22f43f7dcc4a920f9453fb7a5996e31b5523f8b (diff)
[docs] Remove now confusing references to cofigure/autoconf
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260042 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GettingStarted.rst')
-rw-r--r--docs/GettingStarted.rst11
1 files changed, 1 insertions, 10 deletions
diff --git a/docs/GettingStarted.rst b/docs/GettingStarted.rst
index 5cd0fbf2366..69e0d1781bd 100644
--- a/docs/GettingStarted.rst
+++ b/docs/GettingStarted.rst
@@ -202,9 +202,6 @@ Package Version Notes
`GNU Make <http://savannah.gnu.org/projects/make>`_ 3.79, 3.79.1 Makefile/build processor
`GCC <http://gcc.gnu.org/>`_ >=4.7.0 C/C++ compiler\ :sup:`1`
`python <http://www.python.org/>`_ >=2.7 Automated test suite\ :sup:`2`
-`GNU M4 <http://savannah.gnu.org/projects/m4>`_ 1.4 Macro processor for configuration\ :sup:`3`
-`GNU Autoconf <http://www.gnu.org/software/autoconf/>`_ 2.60 Configuration script builder\ :sup:`3`
-`GNU Automake <http://www.gnu.org/software/automake/>`_ 1.9.6 aclocal macro generator\ :sup:`3`
`libtool <http://savannah.gnu.org/projects/libtool>`_ 1.5.22 Shared library manager\ :sup:`3`
`zlib <http://zlib.net>`_ >=1.2.3.4 Compression library\ :sup:`4`
=========================================================== ============ ==========================================
@@ -216,9 +213,6 @@ Package Version Notes
info.
#. Only needed if you want to run the automated test suite in the
``llvm/test`` directory.
- #. If you want to make changes to the configure scripts, you will need GNU
- autoconf (2.60), and consequently, GNU M4 (version 1.4 or higher). You
- will also need automake (1.9.6). We only use aclocal from that package.
#. Optional, adds compression / uncompression capabilities to selected LLVM
tools.
@@ -506,8 +500,7 @@ get it from the Subversion repository:
% svn co http://llvm.org/svn/llvm-project/test-suite/trunk test-suite
By placing it in the ``llvm/projects``, it will be automatically configured by
-the LLVM configure script as well as automatically updated when you run ``svn
-update``.
+the LLVM cmake configuration.
Git Mirror
----------
@@ -882,8 +875,6 @@ The LLVM build system is capable of sharing a single LLVM source tree among
several LLVM builds. Hence, it is possible to build LLVM for several different
platforms or configurations using the same source tree.
-This is accomplished in the typical autoconf manner:
-
* Change directory to where the LLVM object files should live:
.. code-block:: console