[PATCH] D94545: [lld-macho][easy] Create group for LLD-specific CLI flags

Jez Ng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 20 11:21:49 PST 2021


This revision was automatically updated to reflect the committed changes.
Closed by commit rGb3e73dc5af6b: [lld-macho][easy] Create group for LLD-specific CLI flags (authored by int3).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D94545/new/

https://reviews.llvm.org/D94545

Files:
  lld/MachO/Options.td


Index: lld/MachO/Options.td
===================================================================
--- lld/MachO/Options.td
+++ lld/MachO/Options.td
@@ -3,23 +3,32 @@
 // Flags that lld/MachO understands but ld64 doesn't. These take
 // '--' instead of '-' and use dashes instead of underscores, so
 // they don't collide with the ld64 compat options.
+def grp_lld : OptionGroup<"kind">, HelpText<"LLD-SPECIFIC">;
 
-def help : Flag<["-", "--"], "help">;
+def help : Flag<["-", "--"], "help">,
+    Group<grp_lld>;
 def help_hidden : Flag<["--"], "help-hidden">,
-  HelpText<"Display help for hidden options">;
+    HelpText<"Display help for hidden options">,
+    Group<grp_lld>;
 def color_diagnostics: Flag<["--"], "color-diagnostics">,
-  HelpText<"Alias for --color-diagnostics=always">;
+    HelpText<"Alias for --color-diagnostics=always">,
+    Group<grp_lld>;
 def no_color_diagnostics: Flag<["--"], "no-color-diagnostics">,
-  HelpText<"Alias for --color-diagnostics=never">;
+    HelpText<"Alias for --color-diagnostics=never">,
+    Group<grp_lld>;
 def color_diagnostics_eq: Joined<["--"], "color-diagnostics=">,
-  HelpText<"Use colors in diagnostics (default: auto)">,
-  MetaVarName<"[auto,always,never]">;
-def reproduce: Separate<["--"], "reproduce">;
+    HelpText<"Use colors in diagnostics (default: auto)">,
+    MetaVarName<"[auto,always,never]">,
+    Group<grp_lld>;
+def reproduce: Separate<["--"], "reproduce">,
+    Group<grp_lld>;
 def reproduce_eq: Joined<["--"], "reproduce=">,
     Alias<!cast<Separate>(reproduce)>,
-    HelpText<"Write tar file containing inputs and command to reproduce link">;
+    HelpText<"Write tar file containing inputs and command to reproduce link">,
+    Group<grp_lld>;
 def version: Flag<["--"], "version">,
-    HelpText<"Display the version number and exit">;
+    HelpText<"Display the version number and exit">,
+    Group<grp_lld>;
 
 
 // This is a complete Options.td compiled from Apple's ld(1) manpage


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94545.317950.patch
Type: text/x-patch
Size: 1972 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210120/2f0d3784/attachment.bin>


More information about the llvm-commits mailing list