summaryrefslogtreecommitdiffhomepage
path: root/src/driver
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-12-14 05:53:56 -0500
committermidipix <writeonce@midipix.org>2017-12-14 11:36:09 -0500
commitc63b6d1fd73e61e48018487420f75ee218c41586 (patch)
tree7e53d0408ad5d7125540016d0c4c358db4752baf /src/driver
parentee981e016f27efe4b1d5df027dc03accdd662cb0 (diff)
downloadperk-c63b6d1fd73e61e48018487420f75ee218c41586.tar.bz2
perk-c63b6d1fd73e61e48018487420f75ee218c41586.tar.xz
output: pe_output_mdso_libraries(): implementation and integration.
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/pe_amain.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/driver/pe_amain.c b/src/driver/pe_amain.c
index 0593a74..8fb1788 100644
--- a/src/driver/pe_amain.c
+++ b/src/driver/pe_amain.c
@@ -69,6 +69,9 @@ static void pe_perform_unit_actions(
if ((flags & PERK_OUTPUT_IMPORT_LIBS) || (flags & PERK_OUTPUT_IMPORT_SYMS))
pe_output_import_libraries(dctx,uctx->meta,0);
+
+ if ((flags & PERK_OUTPUT_MDSO_LIBS) || (flags & PERK_OUTPUT_MDSO_SYMS))
+ pe_output_mdso_libraries(dctx,uctx->meta,0);
}
static int pe_exit(struct pe_driver_ctx * dctx, int ret)