I know that there is a file / proc / pro # / maps that shows the loaded libraries, but is there any way to find out in what order the symbols are loaded?
You can get all the debugging information using an environment variable LD_DEBUG. For instance:
LD_DEBUG
$ LD_DEBUG=files ls
This will run lsand show you the shared libraries as they load. Use LD_DEBUG=helpto list other options.
ls
LD_DEBUG=help
You can run the application under straceand look at the dynamic linker of mmaplibraries in the process memory.
strace
mmap
Source: https://habr.com/ru/post/1732607/More articles:Найдите td с определенным значением, используя xpath - xpathUnable to enable backend in IIS5 - htmlHow can I move CGPath without creating a new one - iphoneEmail body in Symfony 1.4 mailer? - emailPerformance Check Swing - javaJava JTable с частым обновлением? - javaHow to convert XML to text file using XSLT - xmlOptimize pagination and sorting with ObjectDataSource with EnableCaching = true - optimizationReconfiguring editindex after updating GridView - asp.netEasiest way to show "loading" when using jquery ajax? - jqueryAll Articles