[llvm] r190696 - typo fix: use BUILD_ARCHIVE to build .a libs and not ARCHIVE_LIBRARY
Nuno Lopes
nunoplopes at sapo.pt
Fri Sep 13 08:01:54 PDT 2013
Author: nlopes
Date: Fri Sep 13 10:01:54 2013
New Revision: 190696
URL: http://llvm.org/viewvc/llvm-project?rev=190696&view=rev
Log:
typo fix: use BUILD_ARCHIVE to build .a libs and not ARCHIVE_LIBRARY
Modified:
llvm/trunk/docs/MakefileGuide.rst
Modified: llvm/trunk/docs/MakefileGuide.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/MakefileGuide.rst?rev=190696&r1=190695&r2=190696&view=diff
==============================================================================
--- llvm/trunk/docs/MakefileGuide.rst (original)
+++ llvm/trunk/docs/MakefileGuide.rst Fri Sep 13 10:01:54 2013
@@ -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 t
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
^^^^^^^^^
More information about the llvm-commits
mailing list