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/internal | |
parent | b6abc337906e43f92f50e075f49df407946fc6fe (diff) | |
download | slibtool-fbda3a30a94210a48e797fa9c9dc635f3afaceb9.tar.bz2 slibtool-fbda3a30a94210a48e797fa9c9dc635f3afaceb9.tar.xz |
driver: added --mdso and --implib support.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/slibtool_driver_impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h index b630126..b255042 100644 --- a/src/internal/slibtool_driver_impl.h +++ b/src/internal/slibtool_driver_impl.h @@ -35,6 +35,8 @@ enum app_tags { TAG_AR, TAG_RANLIB, TAG_DLLTOOL, + TAG_MDSO, + TAG_IMPLIB, TAG_OUTPUT, TAG_BINDIR, TAG_LDRPATH, @@ -71,6 +73,7 @@ struct slbt_host_strs { char * ar; char * ranlib; char * dlltool; + char * mdso; }; struct slbt_driver_ctx_impl { |