xcode4在Mac系统中安装了哪些文件?
我刚刚在 mac pro 中安装了 xcode4。如何检查系统中安装了哪些文件?
系统中有两个 clang。一个位于 /usr/bin 中,另一个位于 /Developer/usr/bin/ 中。为什么系统要维护两份副本?
与许多其他工具如 svn、llvm-gcc、yacc 等相同。它们在 /usr/bin 和 /Developer/usr/bin 中都有两个副本。
I just intalled xcode4 in mac pro. How can I check which files are installed from in the system?
There are two clang in the systems. One is in /usr/bin, and another is in /Developer/usr/bin/. Why the system maintain two copies?
The same as many other tools such as svn, llvm-gcc, yacc and so on. They both have two copies in /usr/bin and /Developer/usr/bin.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开发人员工具安装到/Developer 中。由于历史和unixy 的原因,一些工具也安装到/usr 中以与现有实践保持一致。
The developer tools are installed into /Developer. Due to historical and unixy reasons some of the tools are also installed into /usr to be consistent with existing practice.