diff options
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 17b94f9b..b67b9789 100755 --- a/src/main.c +++ b/src/main.c @@ -858,6 +858,12 @@ int main(int argc, const char **argv, const char **env) { } } FreeCollection(&ld_preload); + // Call librarian to load all dependant elf + if(LoadNeededLibs(elf_header, my_context->maplib, &my_context->neededlibs, 0, my_context, emu)) { + printf_log(LOG_NONE, "Error: loading needed libs in elf %s\n", my_context->argv[0]); + FreeBox64Context(&my_context); + return -1; + } return 0; } |