Hello. I was wondering which command would allow me to know factually check which graphic library an application uses?

For instance, which UI library does telegram or firefox use? strace wouldn’t work for that purpose as it deals with system calls, right? What about ltrace which works for library calls? I was able to find some gtk strings in the output of ltrace, but mostly strncmp(), strchr(), strlen(), memchr(), and one setenv(GTK_IM_MODULE, "gtk-im-context- simple"). Is that enough to conclude the process uses gtk?

It’s a little verbose, so I wondered what about lsof to show open files. lsof -p <pid> shows me that the pid opens up libgtk-3.0.so… That seems conclusive enough, right? There wouldn’t be any reason to open that libgtk-3.0.so shared object if it didn’t use gtk?

Seems like lsof is better for getting this information rather than ltrace, right?

In the specific case of firefox, lsof does show that firefox uses libgtk-3.0.so as well as something called libmozgtk.so so I guess they don’t fully use gtk, but their own thing as well?

In summary, what’s the best and most reliable command to figure out which graphic library (QT, GTK, something else) an application uses? lsof?

Thanks

  • ShaunaTheDead@kbin.social
    link
    fedilink
    arrow-up
    1
    ·
    9 months ago

    It’s not exactly bulletproof but running any program from the command line will throw an error if there’s a missing dependency. Then it should be as simple as installing the dependencies through your package manager.