1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include "slibtool_driver_impl.h"
#include "argv/argv.h"
const struct argv_option slbt_ar_options[] = {
{"version", 0,TAG_AR_VERSION,ARGV_OPTARG_NONE,0,0,0,
"show version information"},
{"help", 'h',TAG_AR_HELP,ARGV_OPTARG_NONE,0,0,0,
"display ar mode help"},
{"Wcheck", 0,TAG_AR_CHECK,ARGV_OPTARG_NONE,
ARGV_OPTION_HYBRID_ONLY,
"[ARCHIVE-FILE]",0,
"verify that each %s is a valid archive; "
"supported variants are BSD, SysV, and PE/COFF"},
{"Wmerge", 0,TAG_AR_MERGE,ARGV_OPTARG_NONE,
ARGV_OPTION_HYBRID_ONLY,
"[ARCHIVE-FILE]",0,
"merge one or more archive files; "
"the name of the new archive, which may be the same "
"as one of the input archives, shall be specified "
"via the -Woutput switch; order of archive members "
"shall be retained, and symbol maps shall be "
"merged as well as normalized."},
{"Woutput", 0,TAG_AR_OUTPUT,ARGV_OPTARG_REQUIRED,
ARGV_OPTION_HYBRID_ONLY|ARGV_OPTION_HYBRID_SPACE,
0,0,
"specify the name of the archive to be created "
"(or replaced) as a result of a -Wmerge operation."},
{"Wprint", 0,TAG_AR_PRINT,ARGV_OPTARG_OPTIONAL,
ARGV_OPTION_HYBRID_EQUAL|ARGV_OPTION_HYBRID_COMMA,
"members|symbols",0,
"print out information pertaining to each archive file "
"and its various internal elements"},
{"Wpretty", 0,TAG_AR_PRETTY,ARGV_OPTARG_REQUIRED,
ARGV_OPTION_HYBRID_EQUAL,
"posix|yaml|hexdata",0,
"select the pretty printer to be used: "
"'posix' for ar(1) compatible output; "
"'yaml' for yaml-formatted data; and "
"'hexdata' for yaml-formatted data with additional "
"hexdump output"},
{"Wposix", 0,TAG_AR_POSIX,ARGV_OPTARG_NONE,
ARGV_OPTION_HYBRID_ONLY,0,0,
"a shorthand for -Wpretty=posix"},
{"Wyaml", 0,TAG_AR_YAML,ARGV_OPTARG_NONE,
ARGV_OPTION_HYBRID_ONLY,0,0,
"a shorthand for -Wpretty=yaml"},
{"Wverbose", 0,TAG_AR_VERBOSE,ARGV_OPTARG_NONE,
ARGV_OPTION_HYBRID_ONLY,0,0,
"produce verbose output; "
"in combination with -Wpretty=posix, this will result "
"in `ar(1) -tv` compatible output."},
{0,0,0,0,0,0,0,0}
};
|