llvm-otool (mac) 的源代码在哪里?

Where is the source code of llvm-otool (mac)?

macOS 的 CommandLineTools 中有 llvm-otool。

llvm中有llvm-otool吗?我在 https://github.com/llvm-mirror/llvm.git.

的 llvm 源代码中没有看到它

有人知道在哪里可以找到它的源代码吗?

Apple 软件开源部分的源代码可在 https://opensource.apple.com/. Specifically, otool sources should be here: https://opensource.apple.com/source/cctools/ and here: https://opensource.apple.com/source/llvmCore/ 获得(根据其手册页,llvm-otool 只是一个调用 LLVM 的 objdump 的垫片)。

我在这里检查了一个 llvm-otool 到上游 LLVM:https://github.com/llvm/llvm-project/commit/1a3f88658a02be6be5224fca9d9123b79958f289

文档:https://llvm.org/docs/CommandGuide/llvm-otool.html

它不是 Xcode 附带的那个,但它的行为类似。