diff options
author | midipix <writeonce@midipix.org> | 2016-03-06 14:26:36 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-03-08 14:21:08 -0500 |
commit | 6376f0dd27115ae9951267c8f1313b498d439ba1 (patch) | |
tree | 2f051d7c6bfa1b1631b065cc2e81925b002b3353 /src/driver/slbt_driver_ctx.c | |
parent | d03fbc17f423db1720a3509eba0affa753412ce5 (diff) | |
download | slibtool-6376f0dd27115ae9951267c8f1313b498d439ba1.tar.bz2 slibtool-6376f0dd27115ae9951267c8f1313b498d439ba1.tar.xz |
driver: added context initialization for --warnings.
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index 53cbcf8..319678b 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -174,6 +174,17 @@ int slbt_get_driver_ctx( case TAG_FEATURES: cctx.drvflags |= SLBT_DRIVER_FEATURES; break; + + case TAG_WARNINGS: + if (!strcmp("all",entry->arg)) + cctx.tag = SLBT_WARNING_LEVEL_ALL; + + else if (!strcmp("error",entry->arg)) + cctx.tag = SLBT_WARNING_LEVEL_ERROR; + + else if (!strcmp("none",entry->arg)) + cctx.tag = SLBT_WARNING_LEVEL_NONE; + break; } } else nunits++; |