diff options
author | midipix <writeonce@midipix.org> | 2017-12-14 05:53:56 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-12-14 11:36:09 -0500 |
commit | c63b6d1fd73e61e48018487420f75ee218c41586 (patch) | |
tree | 7e53d0408ad5d7125540016d0c4c358db4752baf /src/driver | |
parent | ee981e016f27efe4b1d5df027dc03accdd662cb0 (diff) | |
download | perk-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.c | 3 |
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) |