跟踪ELF文件的加载
是否可以跟踪 ELF 可执行文件的加载,从输入程序名称并按 Enter 键直到执行 main 函数?如果是,那么该怎么做?
Is it possible to trace loading of ELF executable from typing name of program and pressing enter until execution of main function? If yes, then how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
斯特雷斯怎么样?
这将启动您的程序并打印所有系统调用,我认为这就是您所说的“跟踪”。一旦看到自己的代码正在执行,您就可以停止查看输出。
How about strace?
This will launch your program and print all the system calls as they are made, which I assume is what you meant by "trace." You can just stop looking at the output once you see your own code being executed.
会告诉你有关 LD_DEBUG 的信息。
will tell you about LD_DEBUG.