diff options
author | orivej <orivej@yandex-team.ru> | 2022-02-10 16:44:49 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:44:49 +0300 |
commit | 718c552901d703c502ccbefdfc3c9028d608b947 (patch) | |
tree | 46534a98bbefcd7b1f3faa5b52c138ab27db75b7 /contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td | |
parent | e9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (diff) | |
download | ydb-718c552901d703c502ccbefdfc3c9028d608b947.tar.gz |
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td')
-rw-r--r-- | contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td | 120 |
1 files changed, 60 insertions, 60 deletions
diff --git a/contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td b/contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td index 866353573c..f1a8d1140b 100644 --- a/contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td +++ b/contrib/libs/llvm12/tools/llvm-lipo/LipoOpts.td @@ -1,60 +1,60 @@ -include "llvm/Option/OptParser.td" - -def help : Flag<["-", "--"], "help">; -def h : Flag<["-"], "h">, Alias<help>; - -def version : Flag<["-", "--"], "version">, - HelpText<"Print the version and exit.">; - -def segalign - : MultiArg<["-", "--"], "segalign", 2>, - HelpText<"Specifies the segment alignment for the specified " - "architecture when creating a universal binary file. The " - "alignment is a hexadecimal number that is a power of 2.">; - -def arch - : MultiArg<["-", "--"], "arch", 2>, - HelpText<"Specifies the architecture and the corresponding input file">; - -def action_group : OptionGroup<"action group">; - -def verify_arch - : Option<["-", "--"], "verify_arch", KIND_REMAINING_ARGS>, - Group<action_group>, - HelpText< - "Verify that the specified arch_types are present in the input file">; - -def archs : Option<["-", "--"], "archs", KIND_FLAG>, - Group<action_group>, - HelpText<"Display the arch_types present in the input file">; - -def info : Option<["-", "--"], "info", KIND_FLAG>, - Group<action_group>, - HelpText<"Display descriptions of each input file including " - "filename and arch_types. Groups universal binaries " - "together followed by thin files">; - -def thin : Option<["-", "--"], "thin", KIND_SEPARATE>, - Group<action_group>, - HelpText<"Create a thin output file of specified arch_type from the " - "fat input file. Requires -output option">; - -def extract : Option<["-", "--"], "extract", KIND_SEPARATE>, - Group<action_group>, - HelpText<"Create a universal output file containing only the specified " - "arch_type from the fat input file. Requires -output option">; - -def create : Option<["-", "--"], "create", KIND_FLAG>, - Group<action_group>, - HelpText<"Create a universal binary output file from the input " - "files. Requires -output option">; - -def replace - : MultiArg<["-", "--"], "replace", 2>, - Group<action_group>, - HelpText<"Replace the specified arch type with the contents of the " - "input_file in a universal binary. Requires -output option">; - -def output : Option<["-", "--"], "output", KIND_SEPARATE>, - HelpText<"Create output file with specified name">; -def o : JoinedOrSeparate<["-"], "o">, Alias<output>; +include "llvm/Option/OptParser.td" + +def help : Flag<["-", "--"], "help">; +def h : Flag<["-"], "h">, Alias<help>; + +def version : Flag<["-", "--"], "version">, + HelpText<"Print the version and exit.">; + +def segalign + : MultiArg<["-", "--"], "segalign", 2>, + HelpText<"Specifies the segment alignment for the specified " + "architecture when creating a universal binary file. The " + "alignment is a hexadecimal number that is a power of 2.">; + +def arch + : MultiArg<["-", "--"], "arch", 2>, + HelpText<"Specifies the architecture and the corresponding input file">; + +def action_group : OptionGroup<"action group">; + +def verify_arch + : Option<["-", "--"], "verify_arch", KIND_REMAINING_ARGS>, + Group<action_group>, + HelpText< + "Verify that the specified arch_types are present in the input file">; + +def archs : Option<["-", "--"], "archs", KIND_FLAG>, + Group<action_group>, + HelpText<"Display the arch_types present in the input file">; + +def info : Option<["-", "--"], "info", KIND_FLAG>, + Group<action_group>, + HelpText<"Display descriptions of each input file including " + "filename and arch_types. Groups universal binaries " + "together followed by thin files">; + +def thin : Option<["-", "--"], "thin", KIND_SEPARATE>, + Group<action_group>, + HelpText<"Create a thin output file of specified arch_type from the " + "fat input file. Requires -output option">; + +def extract : Option<["-", "--"], "extract", KIND_SEPARATE>, + Group<action_group>, + HelpText<"Create a universal output file containing only the specified " + "arch_type from the fat input file. Requires -output option">; + +def create : Option<["-", "--"], "create", KIND_FLAG>, + Group<action_group>, + HelpText<"Create a universal binary output file from the input " + "files. Requires -output option">; + +def replace + : MultiArg<["-", "--"], "replace", 2>, + Group<action_group>, + HelpText<"Replace the specified arch type with the contents of the " + "input_file in a universal binary. Requires -output option">; + +def output : Option<["-", "--"], "output", KIND_SEPARATE>, + HelpText<"Create output file with specified name">; +def o : JoinedOrSeparate<["-"], "o">, Alias<output>; |