diff options
author | midipix <writeonce@midipix.org> | 2017-10-25 22:26:30 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-10-26 01:03:43 -0400 |
commit | fbda3a30a94210a48e797fa9c9dc635f3afaceb9 (patch) | |
tree | 8ad8665cdf3154773df1f6dccf0b3f3a422043fe /src/skin | |
parent | b6abc337906e43f92f50e075f49df407946fc6fe (diff) | |
download | slibtool-fbda3a30a94210a48e797fa9c9dc635f3afaceb9.tar.bz2 slibtool-fbda3a30a94210a48e797fa9c9dc635f3afaceb9.tar.xz |
driver: added --mdso and --implib support.
Diffstat (limited to 'src/skin')
-rw-r--r-- | src/skin/slbt_skin_default.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/skin/slbt_skin_default.c b/src/skin/slbt_skin_default.c index 40eb189..ceb4d30 100644 --- a/src/skin/slbt_skin_default.c +++ b/src/skin/slbt_skin_default.c @@ -91,6 +91,17 @@ const struct argv_option slbt_default_options[] = { "explicitly specify the PE import library generator " "to be used"}, + {"mdso", 0,TAG_MDSO,ARGV_OPTARG_REQUIRED,0,0,"<mdso>", + "explicitly specify the PE custom import library " + "generator to be used"}, + + {"implib", 0,TAG_IMPLIB,ARGV_OPTARG_REQUIRED,0, + "idata|dsometa",0, + "PE import libraries should either use the legacy " + "format (.idata section) and be generated by dlltool, " + "or the custom format (.dsometa section) and be " + "generated by mdso"}, + {"warnings", 0,TAG_WARNINGS,ARGV_OPTARG_REQUIRED,0, "all|none|error",0, "set the warning reporting level; " |