diff options
author | midipix <writeonce@midipix.org> | 2024-03-02 18:09:58 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-02 22:03:12 +0000 |
commit | 39e52e63ebf9fd7572e57704cc27331a34a72a9a (patch) | |
tree | d4e0c062fc0edf4691fb377eb913ce4fa7e8e7cd /src/internal/slibtool_driver_impl.h | |
parent | 9da20229476b0de4fa1e5460b9ade35775a02165 (diff) | |
download | slibtool-39e52e63ebf9fd7572e57704cc27331a34a72a9a.tar.bz2 slibtool-39e52e63ebf9fd7572e57704cc27331a34a72a9a.tar.xz |
execution context: added -dlopen and -dlpreopen support.
Diffstat (limited to 'src/internal/slibtool_driver_impl.h')
-rw-r--r-- | src/internal/slibtool_driver_impl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/internal/slibtool_driver_impl.h b/src/internal/slibtool_driver_impl.h index b540e6a..d838aea 100644 --- a/src/internal/slibtool_driver_impl.h +++ b/src/internal/slibtool_driver_impl.h @@ -149,6 +149,7 @@ struct slbt_driver_ctx_impl { struct slbt_map_info lconf; struct slbt_txtfile_ctx * lconfctx; struct slbt_obj_list * objlistv; + const char ** dlopenv; size_t ndlopen; @@ -177,12 +178,15 @@ struct slbt_exec_ctx_impl { const struct slbt_driver_ctx * dctx; struct slbt_symlist_ctx * sctx; struct slbt_exec_ctx ctx; + struct slbt_archive_ctx ** dlactxv; + char ** dlargv; int argc; char * args; char * shadow; char * dsoprefix; size_t size; int fdwrapper; + char sbuf[PATH_MAX]; char ** lout[2]; char ** mout[2]; char ** vbuffer; |