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.
我想查询 GNU 链接器 (ld) 以找出 .so 文件的路径。我知道有几个目录存储了这样的文件,但我知道是否可以直接查询链接器。
如果有的话,正确的方法是什么?
不是直接查询,但你可以使用类似的东西
ld -t -lm -lc -lfoo 2> /dev/null | tail -n+2 | sed 's!^[^/]*\(/[^)]*\).*$!\1!g'
它将列出所有传递给 ld 的库。