无法在 Xcode 4.2.1 中构建 openssl
我可以在 xcode 3.5.2 中构建 openssl,但最近我升级到 Xcode 4.2.1。现在,当我尝试在相同的旧 Xcode 中构建时,我遇到了错误。
Make[1]: /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2: 没有这样的文件或目录
Cp: libcrypto.a: No such file or directory
Cp: libssl.a: No such file or directory
我可以有解决方案吗?
I could build openssl in xcode 3.5.2, but recently I upgraded to Xcode 4.2.1. Now when I try to build in the same old Xcode, I'm getting errors.
Make[1]: /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2: No such file or directory
Cp: libcrypto.a: No such file or directory
Cp: libssl.a: No such file or directory
Can I have a solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了 XCode 4 的解决方案。您需要在“构建阶段”中将文本
$PLATFORM_DEVELOPER_BIN_DIR/gcc-4.2
更改为$PLATFORM_DEVELOPER_BIN_DIR/gcc
。祝你好运。I found the solution for XCode 4. You need to change in "Build Phases" the text
$PLATFORM_DEVELOPER_BIN_DIR/gcc-4.2
to$PLATFORM_DEVELOPER_BIN_DIR/gcc
. Good luck.