Added additional information about linking dynamic libraries.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9211 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2003-10-17 21:50:38 +00:00
parent e5f6859911
commit 37c154a1b2

View File

@ -275,6 +275,21 @@
For example, to link libsample.a, you would set USEDLIBS to For example, to link libsample.a, you would set USEDLIBS to
<tt>sample</tt>. <tt>sample</tt>.
<p> <p>
Note that this works only for statically linked libraries.
<p>
<dt>LIBS
<dd>
To link dynamic libraries, add <tt>-l&lt;library base name&gt;</tt> to
the LIBS variable. The LLVM build system will look in the same places
for dynamic libraries as it does for static libraries.
<p>
For example, to link <tt>libsample.so</tt>, you would have the
following line in your <tt>Makefile</tt>:
<p>
<tt>
LIBS+=-lsample
</tt>
</dl> </dl>
<h3> Miscellaneous Variables</h3> <h3> Miscellaneous Variables</h3>