如何确定 EXE 进行的所有系统和库调用

How do I determine all the system and library calls made by an EXE

我正在调查为什么 Warframe 在 Linux 中无法在 WINE 上运行,我怀疑这是由于缺少系统或库调用。我想确定它进行了哪些调用,并将它们与 WINE 直接或间接支持的调用进行比较。

有一个名为 EXE Import Viewer 的工具,它不会连续列出函数调用,但会揭示 exe 的依赖关系。

来自网站:

EXE Import Viewer shows the information about linked libraries and functions, the list of function that an executable file imports, and the DLL's from which the program imports these functions.

这可能是您开始解决问题的好地方。