diff options
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/mdso_driver_ctx.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/driver/mdso_driver_ctx.c b/src/driver/mdso_driver_ctx.c index c1e34ba..cf37052 100644 --- a/src/driver/mdso_driver_ctx.c +++ b/src/driver/mdso_driver_ctx.c @@ -126,6 +126,14 @@ int mdso_get_driver_ctx( cctx.drvflags |= MDSO_DRIVER_VERSION; break; + case TAG_LIBNAME: + cctx.libname = entry->arg; + break; + + case TAG_DSTDIR: + cctx.dstdir = entry->arg; + break; + case TAG_PRETTY: pretty = entry->arg; break; |