diff options
Diffstat (limited to 'docs/Projects.html')
-rw-r--r-- | docs/Projects.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/Projects.html b/docs/Projects.html index f8aaad812e8..8652f374e7a 100644 --- a/docs/Projects.html +++ b/docs/Projects.html @@ -275,6 +275,21 @@ For example, to link libsample.a, you would set USEDLIBS to <tt>sample</tt>. <p> + Note that this works only for statically linked libraries. + <p> + + <dt>LIBS + <dd> + To link dynamic libraries, add <tt>-l<library base name></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> <h3> Miscellaneous Variables</h3> |