diff options
author | midipix <writeonce@midipix.org> | 2015-12-20 04:10:09 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:30 -0500 |
commit | d8c2b3247afc7f837b7d24ec2c93f0fbdc40c584 (patch) | |
tree | 1d7f0afce3bfee5a43d3fbfb655c99488f3689ce /src/skin | |
parent | 8cfad6a6b15e97d7a753558ebd34f8a9798196f6 (diff) | |
download | mdso-d8c2b3247afc7f837b7d24ec2c93f0fbdc40c584.tar.bz2 mdso-d8c2b3247afc7f837b7d24ec2c93f0fbdc40c584.tar.xz |
libname,dstdir: added interface.
Diffstat (limited to 'src/skin')
-rw-r--r-- | src/skin/mdso_skin_default.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/skin/mdso_skin_default.c b/src/skin/mdso_skin_default.c index cf65a3f..a6a4793 100644 --- a/src/skin/mdso_skin_default.c +++ b/src/skin/mdso_skin_default.c @@ -8,6 +8,12 @@ const struct argv_option mdso_default_options[] = { {"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"}, |