diff options
author | midipix <writeonce@midipix.org> | 2018-07-11 08:49:55 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-07-11 09:35:43 -0400 |
commit | 4127b548161e64d97082a95c8b2571ed9686a646 (patch) | |
tree | 2552426975d79f7a0f5e889d9ec005421ddb8774 /src/driver/slbt_driver_ctx.c | |
parent | 9a02e2b279c811545fbbaed99041b3171d64bb84 (diff) | |
download | slibtool-4127b548161e64d97082a95c8b2571ed9686a646.tar.bz2 slibtool-4127b548161e64d97082a95c8b2571ed9686a646.tar.xz |
driver: added --tag=RC support.
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 44cdd81..270f268 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -1058,6 +1058,9 @@ int slbt_get_driver_ctx( else if (!strcmp("NASM",entry->arg)) cctx.tag = SLBT_TAG_NASM; + else if (!strcmp("RC",entry->arg)) + cctx.tag = SLBT_TAG_RC; + else if (!strcmp("disable-static",entry->arg)) cctx.drvflags |= SLBT_DRIVER_DISABLE_STATIC; |