summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2011-11-10 18:49:59 +0000
committerDaniel Dunbar <daniel@zuster.org>2011-11-10 18:49:59 +0000
commita6f5a81285bab84212209d47b1238505512c7c87 (patch)
tree91c13e119cf881c3a6527e1a9e7f0b149128c699 /Makefile
parentf084e1dc42c5c0a69c29de68bf129c39ca5d3641 (diff)
downloadllvm-a6f5a81285bab84212209d47b1238505512c7c87.tar.gz
llvm-a6f5a81285bab84212209d47b1238505512c7c87.tar.bz2
llvm-a6f5a81285bab84212209d47b1238505512c7c87.tar.xz
llvm-config: Replace with C++ version (was llvm-config-2).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144300 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dae41cf56a..3590d5c6cf 100644
--- a/Makefile
+++ b/Makefile
@@ -10,12 +10,12 @@
LEVEL := .
# Top-Level LLVM Build Stages:
+# 0. Execute llvm-build, to construct llvm-config library dependencies.
# 1. Build lib/Support and lib/TableGen, which are used by utils (tblgen).
# 2. Build utils, which is used by VMCore.
# 3. Build VMCore, which builds the Intrinsics.inc file used by libs.
-# 4. Build libs, which are needed by llvm-config.
-# 5. Build llvm-config, which determines inter-lib dependencies for tools.
-# 6. Build tools, runtime, docs.
+# 4. Build llvm-config, which determines inter-lib dependencies for tools.
+# 5. Build tools, runtime, docs.
#
# When cross-compiling, there are some things (tablegen) that need to
# be build for the build system first.