diff options
author | midipix <writeonce@midipix.org> | 2024-02-16 03:25:19 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-02-16 03:25:19 +0000 |
commit | 5ddd2aa439b1ce23b4322cf0abd89a49a8533606 (patch) | |
tree | d5944da8fb12e076b56e0d49f9b7577f90918246 /src/internal/slibtool_driver_impl.h | |
parent | 35000fa828ed7c786c3e6fb0379edd968663cd02 (diff) | |
download | slibtool-5ddd2aa439b1ce23b4322cf0abd89a49a8533606.tar.bz2 slibtool-5ddd2aa439b1ce23b4322cf0abd89a49a8533606.tar.xz |
driver: internals: allows storing a distinct argument vector for each tool.
Diffstat (limited to 'src/internal/slibtool_driver_impl.h')
-rw-r--r-- | src/internal/slibtool_driver_impl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h index 2c5ea39..631a1b6 100644 --- a/src/internal/slibtool_driver_impl.h +++ b/src/internal/slibtool_driver_impl.h @@ -112,6 +112,12 @@ struct slbt_host_strs { char * windres; char * dlltool; char * mdso; + char ** ar_argv; + char ** as_argv; + char ** ranlib_argv; + char ** windres_argv; + char ** dlltool_argv; + char ** mdso_argv; }; struct slbt_obj_list { |