diff options
author | midipix <writeonce@midipix.org> | 2016-03-18 10:30:12 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-18 12:07:20 -0400 |
commit | 46ea991e19cfd0ff0ba29859c99372ce2cc1fe75 (patch) | |
tree | 8fb913360269dd91a5b1ca5d524b47869578ea37 /src/internal/slibtool_driver_impl.h | |
parent | e4a8cea437bff0beb540dd25546b5baf41e899bc (diff) | |
download | slibtool-46ea991e19cfd0ff0ba29859c99372ce2cc1fe75.tar.bz2 slibtool-46ea991e19cfd0ff0ba29859c99372ce2cc1fe75.tar.xz |
driver: host heuristics: initial implementation.
Diffstat (limited to 'src/internal/slibtool_driver_impl.h')
-rw-r--r-- | src/internal/slibtool_driver_impl.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h index d257d3b..6dfed2d 100644 --- a/src/internal/slibtool_driver_impl.h +++ b/src/internal/slibtool_driver_impl.h @@ -41,9 +41,18 @@ enum app_tags { TAG_VERBATIM_FLAG, }; +struct slbt_host_strs { + char * host; + char * flavor; + char * ar; + char * ranlib; + char * dlltool; +}; + struct slbt_driver_ctx_impl { struct slbt_common_ctx cctx; struct slbt_driver_ctx ctx; + struct slbt_host_strs host; char ** targv; char ** cargv; }; |