summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNuno Lopes <nunoplopes@sapo.pt>2013-09-13 15:01:54 +0000
committerNuno Lopes <nunoplopes@sapo.pt>2013-09-13 15:01:54 +0000
commite946a9ceda24775153c2c869e30afab058088238 (patch)
treeb16cd7479b865c4269df0f1e038b74873eab6d31 /docs
parent489b9b348dab51243f93d2f4bdd107c9db077609 (diff)
downloadllvm-e946a9ceda24775153c2c869e30afab058088238.tar.gz
llvm-e946a9ceda24775153c2c869e30afab058088238.tar.bz2
llvm-e946a9ceda24775153c2c869e30afab058088238.tar.xz
typo fix: use BUILD_ARCHIVE to build .a libs and not ARCHIVE_LIBRARY
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/MakefileGuide.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/MakefileGuide.rst b/docs/MakefileGuide.rst
index 0bb4a3ccd1..e01ac9b28c 100644
--- a/docs/MakefileGuide.rst
+++ b/docs/MakefileGuide.rst
@@ -153,7 +153,7 @@ libraries are the default. For example:
LIBRARYNAME = mylib
SHARED_LIBRARY = 1
- ARCHIVE_LIBRARY = 1
+ BUILD_ARCHIVE = 1
says to build a library named ``mylib`` with both a shared library
(``mylib.so``) and an archive library (``mylib.a``) version. The contents of all
@@ -236,7 +236,7 @@ the ``-l`` option). In this case, only the symbols that are unresolved *at
that point* will be resolved from the library, if they exist. Other
(unreferenced) symbols will not be included when the ``.a`` syntax is used. Note
that in order to use the ``.a`` suffix, the library in question must have been
-built with the ``ARCHIVE_LIBRARY`` option set.
+built with the ``BUILD_ARCHIVE`` option set.
JIT Tools
^^^^^^^^^