我正在尝试使用C语言和Xcode构建一个带有glade的界面。我安装了库添加,将其添加到Xcode中的“其他链接器标志”。我想我没有在IDE中正确链接它。我收到以下错误:
"ld: library not found for -lgobject-introspection
clang: error: linker command failed with exit code 1 (use -v to see invocation)"
如何在Xcode中正确链接库?
答案 0 :(得分:0)
答案可在另一篇文章Linking Libraries in Xcode中找到 我们的想法是正确链接链接器标志中的库,如下所示:
-lgobject-introspection
然后在Xcode中的搜索标题路径中添加库的路径 这样,您告诉Xcode在添加的路径中搜索指定的库。