summaryrefslogtreecommitdiff
path: root/src/driver/slbt_driver_ctx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r--src/driver/slbt_driver_ctx.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c
index 8caa5cb..544e485 100644
--- a/src/driver/slbt_driver_ctx.c
+++ b/src/driver/slbt_driver_ctx.c
@@ -702,6 +702,9 @@ int slbt_get_driver_ctx(
else if (!strcmp("NASM",entry->arg))
cctx.tag = SLBT_TAG_NASM;
+
+ else if (!strcmp("disable-static",entry->arg))
+ cctx.drvflags |= SLBT_DRIVER_DISABLE_STATIC;
break;
case TAG_CONFIG:
@@ -811,6 +814,10 @@ int slbt_get_driver_ctx(
cctx.drvflags |= SLBT_DRIVER_ALL_STATIC;
break;
+ case TAG_DISABLE_STATIC:
+ cctx.drvflags |= SLBT_DRIVER_DISABLE_STATIC;
+ break;
+
case TAG_AVOID_VERSION:
cctx.drvflags |= SLBT_DRIVER_AVOID_VERSION;
break;