diff options
author | midipix <writeonce@midipix.org> | 2024-03-08 06:13:22 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-03-08 06:13:22 +0000 |
commit | dfb3317463fa776dec8282e3656980fd8f69e65d (patch) | |
tree | c031d7479d020ba8304c18f465b05cd9bb5da472 /src/logic/slbt_exec_ctx.c | |
parent | 8a41491b40aa67c8907911bade0471ea1a25099d (diff) | |
download | slibtool-dfb3317463fa776dec8282e3656980fd8f69e65d.tar.bz2 slibtool-dfb3317463fa776dec8282e3656980fd8f69e65d.tar.xz |
execute mode: reimplemented with well-formed semantics.
Diffstat (limited to 'src/logic/slbt_exec_ctx.c')
-rw-r--r-- | src/logic/slbt_exec_ctx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/logic/slbt_exec_ctx.c b/src/logic/slbt_exec_ctx.c index cfcfc2a..0564218 100644 --- a/src/logic/slbt_exec_ctx.c +++ b/src/logic/slbt_exec_ctx.c @@ -89,11 +89,11 @@ static struct slbt_exec_ctx_impl * slbt_exec_ctx_alloc( /* internal driver context for host-specific tool arguments */ ctx = slbt_get_driver_ictx(dctx); - /* initial buffer size (cargv, -Wc), .libs/extras */ + /* initial buffer size (cargv, -Wc), .libs/.exe.wrapper */ argc = 0; csrc = 0; size = 0; - exts = 16; + exts = 20; for (parg=dctx->cctx->cargv; *parg; parg++, argc++) { if (!(strncmp("-Wc,",*parg,4))) { |