diff options
author | midipix <writeonce@midipix.org> | 2016-03-20 12:24:55 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-20 13:01:48 -0400 |
commit | 27a8e18211ae952857b5749fd21587b5a5ca3eaa (patch) | |
tree | f375ece18382fdd1deb3186ba2c39ce4f46808de /src | |
parent | 6d0e8adf800c3f3bd5767ebb0cd6d2842d56a337 (diff) | |
download | slibtool-27a8e18211ae952857b5749fd21587b5a5ca3eaa.tar.bz2 slibtool-27a8e18211ae952857b5749fd21587b5a5ca3eaa.tar.xz |
struct slbt_exec_ctx: distinguish between the compiler and the invoked program.
Diffstat (limited to 'src')
-rw-r--r-- | src/logic/slbt_exec_compile.c | 4 | ||||
-rw-r--r-- | src/logic/slbt_exec_ctx.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/logic/slbt_exec_compile.c b/src/logic/slbt_exec_compile.c index 728ff65..b88ea10 100644 --- a/src/logic/slbt_exec_compile.c +++ b/src/logic/slbt_exec_compile.c @@ -40,6 +40,10 @@ int slbt_exec_compile( } } + /* compile mode */ + ectx->program = ectx->compiler; + ectx->argv = ectx->cargv; + /* shared library object */ if (dctx->cctx->drvflags & SLBT_DRIVER_SHARED) { if (!(dctx->cctx->drvflags & SLBT_DRIVER_ANTI_PIC)) { diff --git a/src/logic/slbt_exec_ctx.c b/src/logic/slbt_exec_ctx.c index 0af29ca..b59ac88 100644 --- a/src/logic/slbt_exec_ctx.c +++ b/src/logic/slbt_exec_ctx.c @@ -139,7 +139,8 @@ int slbt_get_exec_ctx( ictx->ctx.altv = &ictx->buffer[ictx->argc + 1]; /* <compiler> */ - ictx->ctx.program = dctx->cctx->cargv[0]; + ictx->ctx.compiler = dctx->cctx->cargv[0]; + ictx->ctx.cargv = ictx->ctx.argv; /* ldirname, lbasename */ ref = (dctx->cctx->output) |