本文介绍了相当于strace -feopen<命令>在Mac OS X上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这对于调试(因此与编程有关)很有用.在linux上,我们可以使用命令
This is useful for debugging (hence programming related). On linux, we can use the command
strace -feopen python myfile.py
找出要加载的python模块和共享对象.在macOS X上是否有等效的单行代码?
to figure out which python modules and shared objects are loaded. Is there an equivalent one-liner on macOS X?
推荐答案
我想你的意思是strace -fetrace=open
?
dtruss -f -t open python myfile.py
这篇关于相当于strace -feopen<命令>在Mac OS X上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!