I am going to use ltrace for some applications like chrome but when I use it, I receive the following error message.
"/usr/bin/google-chrome" is not an ELF file
Does anybody know about the solution? I want to know what functions are exactly called by running an application.
Thanks,
This tells you that
google-chromeis a shell script. If you look inside, you'll see that it eventually invokes a real ELF binary (/opt/google/chrome/chromeon my system).The
ltracecommand will not show you that. It will only show you what external functions are getting called.