在xcode中设置C编译标志

时间:2018-08-06 21:22:13

标签: ios c xcode clang

我一直在尝试编译一些C文件,以在使用Openssl作为加密依赖性的XCode中使用。使用clang编译时,代码可以正常编译。我在这里读过一些帖子,例如Setting C++ compile flags in xcode,该帖子说将这些标志放在“其他链接器标志”之下,但我仍然无法识别它。

这是在命令行上运行的编译命令:

enter image description here

XCode中的标志:

enter image description here

XCode中的错误:

enter image description here

1 个答案:

答案 0 :(得分:1)

感谢@WhozCraig的解决方案

在“标题搜索路径”中添加include文件夹,在“库搜索路径”中添加库文件夹

enter image description here

然后将-lcrypto链接到“其他链接标志”下的文件

enter image description here