|
|
249590 |
#include "perk_driver_impl.h"
|
|
|
249590 |
#include "argv/argv.h"
|
|
|
249590 |
|
|
|
249590 |
const struct argv_option pe_default_options[] = {
|
|
|
12240e |
{"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,0,
|
|
|
c3d8ab |
"show version information"},
|
|
|
249590 |
|
|
|
12240e |
{"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,0,"short|long",0,
|
|
|
c3d8ab |
"show usage information [listing %s options only]"},
|
|
|
249590 |
|
|
|
12240e |
{"output", 'o',TAG_OUTPUT,ARGV_OPTARG_REQUIRED,0,0,"<file>",
|
|
|
c3d8ab |
"write output to %s"},
|
|
|
249590 |
|
|
|
12240e |
{"pretty", 'p',TAG_PRETTY,ARGV_OPTARG_REQUIRED,0,"yaml",0,
|
|
|
c3d8ab |
"format output for parsing by %s"},
|
|
|
249590 |
|
|
|
12240e |
{"expsyms", 'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,0,
|
|
|
c3d8ab |
"print exported symbols" },
|
|
|
249590 |
|
|
|
12240e |
{"implibs", 'i',TAG_IMPLIBS,ARGV_OPTARG_NONE,0,0,0,
|
|
|
c3d8ab |
"list direct dependency libraries"},
|
|
|
249590 |
|
|
|
12240e |
{"impsyms", 'I',TAG_IMPSYMS,ARGV_OPTARG_NONE,0,0,0,
|
|
|
c3d8ab |
"list direct dependency libraries "
|
|
|
c3d8ab |
"along with required symbols"},
|
|
|
249590 |
{0}
|
|
|
249590 |
};
|