diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-07-31 16:40:38 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-07-31 16:40:38 +0000 |
commit | 981576daf76d29a797f0ebe3be9832d6f86a7c1c (patch) | |
tree | b61a93500d3bd7b39cd357a9a7995b1c69a6dbca | |
parent | 9ff4626028a1cea315a8105c170262ff8638ef9a (diff) | |
download | bcm5719-llvm-981576daf76d29a797f0ebe3be9832d6f86a7c1c.tar.gz bcm5719-llvm-981576daf76d29a797f0ebe3be9832d6f86a7c1c.zip |
Add some help strings for /dll and /debug so they show up in /?
llvm-svn: 243757
-rw-r--r-- | lld/COFF/Options.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/COFF/Options.td b/lld/COFF/Options.td index 5f7774fddb3..40dbd572b3d 100644 --- a/lld/COFF/Options.td +++ b/lld/COFF/Options.td @@ -59,8 +59,8 @@ def incl : Joined<["/", "-"], "include:">, def deffile : Joined<["/", "-"], "def:">, HelpText<"Use module-definition file">; -def debug : F<"debug">; -def dll : F<"dll">; +def debug : F<"debug">, HelpText<"Embed a symbol table in the image">; +def dll : F<"dll">, HelpText<"Create a DLL">; def nodefaultlib_all : F<"nodefaultlib">; def noentry : F<"noentry">; def profile : F<"profile">; |