Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用编译安装了一个Linux软件,make install。然后我找不到一个叫aaa.f90的文件,aaa.f90是bbb.py调用的,这两个文件在我的安装目录下。我怎么知道它是从 Makefile 安装到哪里的?我试过'which aaa.f90',它不起作用。
我尝试阅读 Makefile.am、Makefile.in,但很难理解。
which搜索可执行文件的路径。为什么不直接使用 find 从命令行中查找呢?例子:
which
find / -name aaa.f90 -print
您可能需要 sudo 以这种方式查找给定文件,但在这种情况下似乎不太可能。