diff options
author | midipix <writeonce@midipix.org> | 2016-03-16 04:16:40 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-16 04:30:56 -0400 |
commit | 4df79057b5f599ec5ee6cb16572f9649726301a3 (patch) | |
tree | c1f39ee956f4ec0a0620eb5de037d8ea558aefa1 | |
parent | a2fcc08f33c793c6253ac41045e959692bf89156 (diff) | |
download | slibtool-4df79057b5f599ec5ee6cb16572f9649726301a3.tar.bz2 slibtool-4df79057b5f599ec5ee6cb16572f9649726301a3.tar.xz |
driver: added context initialization for --target.
-rw-r--r-- | include/slibtool/slibtool.h | 1 | ||||
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/slibtool/slibtool.h b/include/slibtool/slibtool.h index c5e250a..61d8917 100644 --- a/include/slibtool/slibtool.h +++ b/include/slibtool/slibtool.h @@ -113,6 +113,7 @@ struct slbt_common_ctx { enum slbt_mode mode; enum slbt_tag tag; enum slbt_warning_level warnings; + const char * target; const char * output; char ** targv; char ** cargv; diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index bb9343a..a207c5b 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -332,6 +332,10 @@ int slbt_get_driver_ctx( cctx.output = entry->arg; break; + case TAG_TARGET: + cctx.target = entry->arg; + break; + case TAG_PREFER_PIC: cctx.drvflags |= SLBT_DRIVER_PRO_PIC; break; |