aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Silva <chisophugis@gmail.com>2016-05-27 04:48:24 +0000
committerSean Silva <chisophugis@gmail.com>2016-05-27 04:48:24 +0000
commit58c42eb66d0120f96e6e4b68eeb315d216299e00 (patch)
tree0b8da04908b0cba2dfc0ab75598c73a5385fcb46
parentcc9d94883dbdc8bae2be17b58d8088af68b25217 (diff)
Explain a bit better what --start-lib and --end-lib do.
git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@270965 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--ELF/Options.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/ELF/Options.td b/ELF/Options.td
index 0825ef7d0..a67c8747f 100644
--- a/ELF/Options.td
+++ b/ELF/Options.td
@@ -54,7 +54,7 @@ def enable_new_dtags : Flag<["--"], "enable-new-dtags">,
HelpText<"Enable new dynamic tags">;
def end_lib : Flag<["--"], "end-lib">,
- HelpText<"End a library">;
+ HelpText<"End a grouping of objects that should be treated as if they were together in an archive">;
def entry : Separate<["--", "-"], "entry">, MetaVarName<"<entry>">,
HelpText<"Name of entry point symbol">;
@@ -139,7 +139,7 @@ def soname : Joined<["-"], "soname=">,
HelpText<"Set DT_SONAME">;
def start_lib : Flag<["--"], "start-lib">,
- HelpText<"Start a library">;
+ HelpText<"Start a grouping of objects that should be treated as if they were together in an archive">;
def strip_all : Flag<["--"], "strip-all">,
HelpText<"Strip all symbols">;