diff options
author | midipix <writeonce@midipix.org> | 2015-12-20 04:10:09 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:30 -0500 |
commit | d8c2b3247afc7f837b7d24ec2c93f0fbdc40c584 (patch) | |
tree | 1d7f0afce3bfee5a43d3fbfb655c99488f3689ce /src/driver | |
parent | 8cfad6a6b15e97d7a753558ebd34f8a9798196f6 (diff) | |
download | mdso-d8c2b3247afc7f837b7d24ec2c93f0fbdc40c584.tar.bz2 mdso-d8c2b3247afc7f837b7d24ec2c93f0fbdc40c584.tar.xz |
libname,dstdir: added interface.
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; |