Blob Blame History Raw
#include "mdso_driver_impl.h"
#include "argv/argv.h"

const struct argv_option mdso_default_options[] = {
	{"version",		'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,
				"show version information"},

	{"help",		'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,"short|long",0,
				"show usage information [listing %s options only]"},

	{"libname",		'n',TAG_LIBNAME,ARGV_OPTARG_REQUIRED,0,"<libname>",
				"set dependency library name to %s"},

	{"dstdir",		'd',TAG_DSTDIR,ARGV_OPTARG_REQUIRED,0,"<dstdir>",
				"save generated assembly files under %s"},

	{"pretty",		'p',TAG_PRETTY,ARGV_OPTARG_REQUIRED,"yaml",0,
				"format output for parsing by %s"},

	{"expsyms",		'e',TAG_EXPSYMS,ARGV_OPTARG_NONE,0,0,
				"print exported symbols" },

	{0}
};