From 0e609bfcff021c701474af9095eb0ba57d9eeeb0 Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 21 Apr 2016 21:05:17 -0400 Subject: driver: added -disable-static support [no-op]. --- src/driver/slbt_driver_ctx.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/driver') 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; -- cgit v1.2.3