diff options
Diffstat (limited to 'src/driver')
-rw-r--r-- | src/driver/pe_driver_ctx.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c index 36df61b..add9113 100644 --- a/src/driver/pe_driver_ctx.c +++ b/src/driver/pe_driver_ctx.c @@ -181,6 +181,14 @@ int pe_get_driver_ctx( case TAG_IMPSYMS: cctx.fmtflags |= PERK_OUTPUT_IMPORT_SYMS; break; + + case TAG_DSOLIBS: + cctx.fmtflags |= PERK_OUTPUT_MDSO_LIBS; + break; + + case TAG_DSOSYMS: + cctx.fmtflags |= PERK_OUTPUT_MDSO_SYMS; + break; } } else nunits++; |