diff options
author | midipix <writeonce@midipix.org> | 2016-03-16 04:24:43 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-16 04:30:23 -0400 |
commit | a2fcc08f33c793c6253ac41045e959692bf89156 (patch) | |
tree | c410074553c76dfcf70cf186db563e9142983edb | |
parent | e392816f5909c456e013bf0a2747cdc65299b3da (diff) | |
download | slibtool-a2fcc08f33c793c6253ac41045e959692bf89156.tar.bz2 slibtool-a2fcc08f33c793c6253ac41045e959692bf89156.tar.xz |
driver: added struct slbt_host_params (host pararmeters, configuration meta).
-rw-r--r-- | include/slibtool/slibtool.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h index 40c3557..c5e250a 100644 --- a/include/slibtool/slibtool.h +++ b/include/slibtool/slibtool.h @@ -96,10 +96,20 @@ struct slbt_exec_ctx { int exitcode; }; +struct slbt_host_params { + const char * host; + const char * flavor; + const char * ar; + const char * ranlib; + const char * dlltool; +}; + struct slbt_common_ctx { uint64_t drvflags; uint64_t actflags; uint64_t fmtflags; + struct slbt_host_params host; + struct slbt_host_params cfgmeta; enum slbt_mode mode; enum slbt_tag tag; enum slbt_warning_level warnings; |