From 98bb297da015c25977f45c3b7753b9d895794b95 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 3 Jun 2006 18:55:33 +0000 Subject: [PATCH] Document the LINK_LIBS_IN_SHARED control variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28676 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/MakefileGuide.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/MakefileGuide.html b/docs/MakefileGuide.html index 2b15b3d5afb..cbbf3b1eb0d 100644 --- a/docs/MakefileGuide.html +++ b/docs/MakefileGuide.html @@ -662,6 +662,13 @@
LIBRARYNAME
Specify the name of the library to be built. (Required For Libraries)
+
LINK_LIBS_IN_SHARED
+
By default, shared library linking will ignore any libraries specified + with the LLVMLIBS or USEDLIBS. + This prevents shared libs from including things that will be in the LLVM + tool the shared library will be loaded into. However, sometimes it is useful + to link certain libraries into your shared library and this option enables + that feature.
LLVMLIBS
Specifies the set of libraries from the LLVM $(ObjDir) that will be linked into the tool or library.